Files
dzentra_bot/infra/compose/docker-compose.yml

25 lines
569 B
YAML

services:
postgres:
image: postgres:17
container_name: dzentra_postgres
restart: unless-stopped
environment:
POSTGRES_DB: dzentra_bot
POSTGRES_USER: dzentra_bot
POSTGRES_PASSWORD: change_me
ports:
- "5432:5432"
volumes:
- dzentra_postgres_data:/var/lib/postgresql/data
bot:
build:
context: ../..
dockerfile: infra/docker/Dockerfile
container_name: dzentra_bot
restart: unless-stopped
env_file:
- ../../app/.env
depends_on:
- postgres
volumes:
dzentra_postgres_data: