Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@shochdoerfer
Last active August 3, 2018 20:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shochdoerfer/d41ae93dd7a1a31421060f9c80b1d1a1 to your computer and use it in GitHub Desktop.
Save shochdoerfer/d41ae93dd7a1a31421060f9c80b1d1a1 to your computer and use it in GitHub Desktop.
version: "2"
services:
app:
build: .
environment:
- MYSQL_DATABASE=mydb
- MYSQL_USER=myuser
- MYSQL_PASSWORD=mypwd
- MYSQL_HOST=mysql
links:
- mysql
mysql:
image: mysql:5.6
environment:
- MYSQL_ROOT_PASSWORD=mypwd
- MYSQL_DATABASE=mydb
- MYSQL_USER=myuser
- MYSQL_PASSWORD=mypwd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment