hatiko_task/compose.yaml
2025-01-24 18:33:52 +10:00

21 lines
377 B
YAML

name: hatiko
services:
api:
container_name: hatiko-api
restart: always
build: ./api
env_file: .env
healthcheck:
test: curl -sSf http://localhost:8000/healthcheck
interval: 60s
start_period: 1s
timeout: 600s
ports:
- 8000:8000
bot:
container_name: hatiko-bot
restart: always
build: ./bot
env_file: .env