task_manager/compose.yaml
2025-03-21 22:42:45 +03:00

19 lines
376 B
YAML

services:
app:
build:
context: .
ports:
- 8080:8080
restart: unless-stopped
depends_on:
- database
database:
image: postgres:latest
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
volumes:
- ./database/init:/docker-entrypoint-initdb.d
restart: unless-stopped