Skip to content

Instantly share code, notes, and snippets.

@luuhq
Created April 8, 2017 23:57
Show Gist options
  • Save luuhq/be7eedc1574e05a489c1b813585d8028 to your computer and use it in GitHub Desktop.
Save luuhq/be7eedc1574e05a489c1b813585d8028 to your computer and use it in GitHub Desktop.
version: '3'
services:
web:
image: microsoft/dotnet:1.1.1-sdk
ports:
- "5000:5000"
env_file: .env
depends_on:
- db
volumes:
- ./src:/opt/app
working_dir: /opt/app
db:
image: postgres:latest
env_file: .env
ports:
- "5432:5432"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment