-
-
Save kenng/4b4ee2f77b4ec3ef0e0d314c1652b55f to your computer and use it in GitHub Desktop.
docker-compose.yml created at Lorry.io
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
databaseadmin: | |
image: phpmyadmin/phpmyadmin | |
environment: | |
PMA_HOST: some-mysql | |
links: | |
- mysqlserver | |
ports: | |
- "8080:80" | |
mysqlserver: | |
image: mysql | |
environment: | |
MYSQL_ROOT_PASSWORD: secret | |
nginxapp: | |
image: richarvey/nginx-php-fpm | |
links: | |
- mysqlserver | |
environment: | |
WEBROOT: /var/www/html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment