/docker-devenv

Docker Varnish - Nginx - PHP-FPM

Primary LanguageShell

docker-devenv

Create:

  • PHP5.5 container with debian Wheezy
  • Nginx container with Debian Wheezy
  • Varnish container with Debian Wheezy
  • MySQL container with the official docker mysql

Usage

We will use fig to start all our container in the good order.

Installation

$(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

General Configuration

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.

Commands

Start

fig up -d

Check state

fig ps

See container logs

fig logs

Stop

fig stop

Stop and remove

fig stop && fig rm