Skip to content

Instantly share code, notes, and snippets.

@Jks15063
Created February 8, 2023 18:09
Show Gist options
  • Save Jks15063/f7cd86677b45312fffda2284763e2984 to your computer and use it in GitHub Desktop.
Save Jks15063/f7cd86677b45312fffda2284763e2984 to your computer and use it in GitHub Desktop.
simple docker setup
version: "3.8"
services:
phoenix:
build: .
volumes:
- ./src:/app
ports:
- "4000:4000"
depends_on:
- postgres
postgres:
image: postgres
volumes:
- db-data0:/var/lib/postgresql/data
environment:
POSTGRES_DB: docker_test_dev
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
volumes:
db-data0:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment