Create:
- PHP5.5 container with debian Wheezy
- Nginx container with Debian Wheezy
- Varnish container with Debian Wheezy
- MySQL container with the official docker mysql
We will use fig to start all our container in the good order.
$(boot2docker shellinit)
curl -L https://github.com/docker/fig/releases/download/1.0.1/fig-`uname -s`-`uname -m` > /usr/local/bin/fig; chmod +x /usr/local/bin/fig
fig --version
The database container is accessible with the name db
.
The web site files must be put in the www
folder on the host of the containers.
Start
fig up -d
Check state
fig ps
See container logs
fig logs
Stop
fig stop
Stop and remove
fig stop && fig rm