intra_max_chatbot/docker-compose.yml
2026-04-07 13:44:54 +03:00

18 lines
380 B
YAML

services:
support_bot:
build: .
container_name: support_bot
env_file: .env
environment:
DB_PATH: /app/data/support.db
ADMIN_HOST: "0.0.0.0"
ports:
- "${ADMIN_PORT:-8080}:8080"
volumes:
- ./data:/app/data
restart: unless-stopped
logging:
driver: json-file
options:
max-size: "10m"
max-file: "5"