Public Access
23 lines
621 B
YAML
23 lines
621 B
YAML
services:
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
container_name: tg-dev-srv-bot-postgres
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: ${TG_BOT_POSTGRES_USER:-postgres}
|
|
POSTGRES_PASSWORD: ${TG_BOT_POSTGRES_PASSWORD:-postgres}
|
|
POSTGRES_DB: ${TG_BOT_POSTGRES_DB:-tg_dev_srv_bot}
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER:-postgres} -d $${POSTGRES_DB:-tg_dev_srv_bot}"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
volumes:
|
|
postgres_data:
|
|
driver: local
|