Created
October 10, 2016 18:27
-
-
Save helsont/3e35ca5c76d621f6eca235ede9c4bd61 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.0' | |
services: | |
web: | |
build: . | |
ports: | |
- "8000:8000" | |
links: | |
- mysql | |
volumes: | |
- .:/app | |
mysql: | |
image: mysql | |
ports: | |
- "3306:3306" | |
environment: | |
- MYSQL_DATABASE=homestead | |
- MYSQL_ROOT_PASSWORD=secret | |
- MYSQL_PASSWORD=secret | |
- MYSQL_USER=root | |
command: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment