Skip to content

Instantly share code, notes, and snippets.

@initcron
Created August 6, 2015 16:24
Show Gist options
  • Select an option

  • Save initcron/eba68bd51779cf95ce46 to your computer and use it in GitHub Desktop.

Select an option

Save initcron/eba68bd51779cf95ce46 to your computer and use it in GitHub Desktop.
docker-compose.yml for nginx and mysql
nginx:
image: initcron/nginx:latest
command: nginx
ports:
- "80:80"
links:
- mysql
mysql:
image: mysql
environment:
MYSQL_ROOT_PASSWORD: pass1234
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment