Skip to content

Instantly share code, notes, and snippets.

@helsont
Created October 10, 2016 18:27
Show Gist options
  • Save helsont/3e35ca5c76d621f6eca235ede9c4bd61 to your computer and use it in GitHub Desktop.
Save helsont/3e35ca5c76d621f6eca235ede9c4bd61 to your computer and use it in GitHub Desktop.
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