Skip to content

Instantly share code, notes, and snippets.

@devalexandre
Created February 15, 2024 01:23
Show Gist options
  • Save devalexandre/30527a1380b93d868f2e3119df69c072 to your computer and use it in GitHub Desktop.
Save devalexandre/30527a1380b93d868f2e3119df69c072 to your computer and use it in GitHub Desktop.
services:
app:
build: .
environment:
- DBUSER=postgres
- DBPASS=Postgres2023!
- DBHOST=postgres
- DBPORT=5432
- DBNAME=postgres
ports:
- "3000:3000"
depends_on:
- postgres
postgres:
image: postgres
volumes:
- ./migrations:/docker-entrypoint-initdb.d
environment:
POSTGRES_PASSWORD: "Postgres2023!"
ports:
- "5432:5432"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment