StarPaymentTest/docker-compose.yaml

23 lines
388 B
YAML

version: "3.8"
services:
sageai-bot:
container_name: StarPaymentTestBot
build: .
environment:
API_ID: ${API_ID}
API_HASH: ${API_HASH}
BOT_TOKEN: ${BOT_TOKEN}
restart: unless-stopped
healthcheck:
test:
- CMD
- curl
- '-f'
- 'http://localhost:3000'
interval: 2s
timeout: 10s
retries: 15