27 lines
558 B
YAML
27 lines
558 B
YAML
services:
|
|
webapp:
|
|
build: .
|
|
container_name: dash-registratori
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
DATABASE_URL: "postgresql://postgres:postgres@db:5432/db?schema=public"
|
|
depends_on:
|
|
- db
|
|
|
|
db:
|
|
image: postgres:alpine
|
|
container_name: db
|
|
restart: unless-stopped
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_DB: db
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
postgres_data:
|