mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-24 15:29:36 +02:00
17 lines
362 B
YAML
17 lines
362 B
YAML
services:
|
|
web:
|
|
build: .
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
- DATABASE_URL=postgres://adventurelog:PO24VjITwGgk@db:5432/adventurelog
|
|
depends_on:
|
|
- db
|
|
db:
|
|
image: postgres
|
|
environment:
|
|
POSTGRES_USER: adventurelog
|
|
POSTGRES_PASSWORD: PO24VjITwGgk
|
|
POSTGRES_DB: adventurelog
|
|
ports:
|
|
- "5432:5432"
|