mirror of
https://github.com/olegvodyanov/docbot.git
synced 2025-12-19 23:57:05 +03:00
13 lines
258 B
YAML
13 lines
258 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:
|
|
- 127.0.0.1:5432:5432
|
|
volumes:
|
|
db_data: |