UA-Bot/docker-compose.yml
2023-07-13 16:07:54 +03:00

34 lines
616 B
YAML

version: '3'
services:
bot:
image: ghcr.io/ua-fediland/ua-bot:main
restart: always
env_file:
- ./.env
volumes:
- ./nicknames.txt:/app/nicknames.txt
- ./domains.txt:/app/domains.txt
depends_on:
- db
networks:
- default
db:
restart: unless-stopped
restart: always
image: postgres:15-alpine
networks:
- default
env_file:
- .db.env
volumes:
- ./db:/var/lib/postgresql/data
healthcheck:
test: "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"
interval: 5s
retries: 20
networks:
default: