Created
January 21, 2021 18:40
-
-
Save geofflangenderfer/65001ba9b8e70e7f9b3875c986395763 to your computer and use it in GitHub Desktop.
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: | |
backend_db: | |
image: postgres:latest | |
ports: | |
- 0000:0000 | |
environment: | |
- POSTGRES_USER= | |
- POSTGRES_PASSWORD= | |
- POSTGRES_DB= | |
web: | |
build: . | |
ports: | |
- 0000:0000 | |
depends_on: | |
- backend_db | |
environment: | |
- DB_HOST= | |
- DB_PORT= | |
- DB_USER= | |
- DB_PASSWORD= | |
- DB_NAME= | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment