-
-
Save anonymous/c7db9dab5db3148953454e57c8482270 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 | |
expose: | |
- "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