lephare/apache
First you need to install Docker and docker-compose.
Copy the docker-composer.yml.dist
to docker-composer.yml
and modify to your need.
The global environment contains generics containers used by our projects. You have :
- jwilder/nginx-proxy A nginx proxy that redirect http requests to the good container based on the domain name.
- mariadb A MariaDb container.
- postgres A PostgreSQL container.
- blackfire A blackfire container for PHP profiling.
You can start theses containers by running :
$ docker-compose up
You can alias docker-compose
to dc
in your bash configuration :
alias dc="docker-compose"
docker pull lephare/apache