hatiko_task/compose.yaml

21 lines
377 B
YAML
Raw Permalink Normal View History

2025-01-24 18:33:52 +10:00
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:
2025-01-24 19:36:32 +10:00
- 8005:8000
2025-01-24 18:33:52 +10:00
bot:
container_name: hatiko-bot
restart: always
build: ./bot
env_file: .env