Files
kandrusyak_bot/deploy/compose.yaml
kandrusyak ee4a1e288d
Some checks failed
delivery / quality (3.10) (push) Successful in 9m57s
delivery / quality (3.12) (push) Successful in 9m13s
delivery / build-and-push (push) Failing after 0s
delivery / deploy (push) Has been skipped
ci: build publish and deploy container image
2026-07-28 00:27:37 +03:00

28 lines
590 B
YAML

services:
bot:
image: git.kandrusyak.ru/admin/kandrusyak-bot:${IMAGE_TAG:?IMAGE_TAG is required}
container_name: kandrusyak-bot
restart: unless-stopped
env_file:
- .env
environment:
ASSISTANT_MODE: yandex
ASSISTANT_DB: /data/assistant_data.sqlite3
volumes:
- bot-data:/data
security_opt:
- no-new-privileges:true
cap_drop:
- ALL
tmpfs:
- /tmp:size=64m,mode=1777
logging:
driver: json-file
options:
max-size: 10m
max-file: "3"
volumes:
bot-data:
name: kandrusyak-bot-data