Sign inSign up

neoalienson/respond

By neoalienson

Updated about 10 years ago

Docker images of Respond CMS 6 / RespondCMS 6

Image
1

10K+

neoalienson/respond repository overview

Respond CMS Docker Image

The docker image

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.

Building from DockerFile
$ docker build -t respond .
Pulling from DockerHub
$ docker pull neoalienson/respond
$ docker tag neoalienson/respond respond

Starting a container from the docker image

After the image is ready, you can start a container from the docker image.

Run without data volumes
$ docker run --name=respond -p 80:80 respond
Run with data volume

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

Tag summary

Content type

Image

Digest

Size

867.9 MB

Last updated

about 10 years ago

docker pull neoalienson/respond