Containers
Containers (Docker)
Official Raneto container images on Docker Hub
Run the default container, and access on localhost:8080docker run --rm -it --publish 8080:8080 raneto/raneto:latest
Same as above, but provide your own content and configuration
docker run --rm -it --publish 8080:8080 \
--volume \
--volume \
raneto/raneto:latest
Want to poke around the files in the container? Get a shell:docker run --rm -it --publish 8080:8080 --volume raneto/raneto:latest /bin/sh