Chester ONeill
04/20/2020, 3:36 AMpostgres:
restart: always
image: postgres:latest
ports:
- '5432:5432'
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
and my database url DATABASE_URL=<postgresql://postgres>:password@localhost:5432/
Ryan
04/20/2020, 10:49 AM<postgresql://postgres>:password@localhost:5432/dbName
Chester ONeill
04/20/2020, 6:22 PM