Skip to content

Instantly share code, notes, and snippets.

@joebew42
Created May 4, 2016 09:36
Show Gist options
  • Save joebew42/154fac6222936b1827e7c98d6ff87dfe to your computer and use it in GitHub Desktop.
Save joebew42/154fac6222936b1827e7c98d6ff87dfe to your computer and use it in GitHub Desktop.
version: '2'
services:
app-dev:
build:
context: .
dockerfile: Dockerfile-dev
image: devops-jumpstart-dev:latest
ports:
- "80:8080"
volumes:
- .:/app
depends_on:
- mysql
links:
- mysql:db
mysql:
image: mysql:latest
environment:
MYSQL_ROOT_PASSWORD: root
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment