Created
June 25, 2021 06:41
-
-
Save zachpendleton/92f2d48ad450ae6e5172e4e35ae8554f 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.8" | |
services: | |
postgres: | |
image: postgres:alpine | |
environment: | |
POSTGRES_PASSWORD: password | |
POSTGRES_USER: course_catalog | |
POSTGRES_DB: course_catalog_development | |
ports: | |
- 5432:5432 | |
redis: | |
image: redis:alpine | |
ports: | |
- 6379:6379 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment