Created
May 18, 2019 23:42
-
-
Save sagarjauhari/116bed45c3e2dbe6115b5464a29cc324 to your computer and use it in GitHub Desktop.
docker-compose with database
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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