Skip to content

Instantly share code, notes, and snippets.

@jadenlemmon
Created March 23, 2022 19:36
Show Gist options
  • Save jadenlemmon/3d34851c4b5ffce5cf8c59a5f04a2622 to your computer and use it in GitHub Desktop.
Save jadenlemmon/3d34851c4b5ffce5cf8c59a5f04a2622 to your computer and use it in GitHub Desktop.
Island List Example Docker Compose File
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