Created
February 16, 2016 18:47
-
-
Save zcstarr/14d960a91534ca7c8a71 to your computer and use it in GitHub Desktop.
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
version: '2' | |
services: | |
db: | |
environment: | |
MYSQL_DATABASE: "test" | |
MYSQL_USER: "test" | |
MYSQL_PASSWORD: "test" | |
MYSQL_ROOT_PASSWORD: "test" | |
ports: | |
- "3306:3306" | |
image: "mariadb:10.1" | |
web: | |
build: . | |
ports: | |
- "8090:8090" | |
- "3000:3000" | |
links: | |
- db |
MrMMorris
commented
Feb 16, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment