Skip to content

Instantly share code, notes, and snippets.

@sagarjauhari
Created May 18, 2019 23:42
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 sagarjauhari/116bed45c3e2dbe6115b5464a29cc324 to your computer and use it in GitHub Desktop.
Save sagarjauhari/116bed45c3e2dbe6115b5464a29cc324 to your computer and use it in GitHub Desktop.
docker-compose with database
version: '3'
services:
db:
image: postgres
environment:
POSTGRES_PASSWORD: password
ports:
- "5432:5432"
dev:
build: .
depends_on:
- db
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment