Docker images of Respond CMS 6 / RespondCMS 6
10K+
You can have the image by either pulling from DockerHub or building it yourself from
DockerFile locally. Update port forwarding in -p 80:80 if required.
$ docker build -t respond .
$ docker pull neoalienson/respond
$ docker tag neoalienson/respond respond
After the image is ready, you can start a container from the docker image.
$ docker run --name=respond -p 80:80 respond
Run below commands if you want to store site contents into your docker host instead of inside the docker image. Please check data volumes for details.
$ export DATA_DIR=${HOME}/respond-data
$ mkdir -p ${DATA_DIR}/sites
$ docker run --name=respond -p 80:80 \
-v ${DATA_DIR}/sites:/var/www/public/sites:Z \
respond
Content type
Image
Digest
Size
867.9 MB
Last updated
about 10 years ago
docker pull neoalienson/respond