Skip to content

Instantly share code, notes, and snippets.

@thejungwon
Last active March 4, 2019 13:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thejungwon/75e571d55530b4d7bbcdf9fd3b86600b to your computer and use it in GitHub Desktop.
Save thejungwon/75e571d55530b4d7bbcdf9fd3b86600b to your computer and use it in GitHub Desktop.
version: '3.3'
services:
app:
build:
context: .
dockerfile: Dockerfile
expose:
- "8000"
ports:
- "8000:8000"
links:
- postgres
postgres:
build:
context: ./postgres
dockerfile: Dockerfile
ports:
- "5432:5432"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment