Skip to content

Instantly share code, notes, and snippets.

@tushartuteja
Created December 15, 2018 16:41
Show Gist options
  • Save tushartuteja/468258625d97b9e5093a9eb62794930c to your computer and use it in GitHub Desktop.
Save tushartuteja/468258625d97b9e5093a9eb62794930c to your computer and use it in GitHub Desktop.
Docker compose
version: '3'
services:
db:
image: postgres
volumes:
- ./tmp/db:/var/lib/postgresql/data
web:
build: .
volumes:
- .:/myapp
ports:
- "3000:3000"
depends_on:
- db
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment