Created
March 23, 2022 19:36
-
-
Save jadenlemmon/3d34851c4b5ffce5cf8c59a5f04a2622 to your computer and use it in GitHub Desktop.
Island List Example Docker Compose File
This file contains 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: | |
app: | |
build: | |
context: ./ | |
environment: | |
APP_ENV: local | |
DB_HOST: database | |
networks: | |
- islandfinder | |
ports: | |
- "5000:5000" | |
volumes: | |
- ./:/app | |
database: | |
image: voyageapp/postgres:14.2 | |
ports: | |
- "54325:5432" | |
networks: | |
- islandfinder | |
networks: | |
islandfinder: | |
driver: bridge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment