21 lines
377 B
YAML
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:
|
|
- 8005:8000
|
|
|
|
bot:
|
|
container_name: hatiko-bot
|
|
restart: always
|
|
build: ./bot
|
|
env_file: .env |