docbot/docker-compose.yml
oleg.vodyanov91@gmail.com c977d350f4 init commit docbot
2025-06-01 03:38:30 +04:00

13 lines
248 B
YAML

services:
db:
image: postgres:17
restart: unless-stopped
env_file:
- .env_db
volumes:
- db_data:/var/lib/postgresql/data
- ./db/init:/docker-entrypoint-initdb.d:ro
ports:
- 5432:5432
volumes:
db_data: