robot-u-site/docker-compose.yml

26 lines
514 B
YAML
Raw Permalink Normal View History

2026-04-14 20:17:29 -04:00
services:
robot-u-site:
build:
context: .
restart: unless-stopped
env_file:
- path: .env
required: false
environment:
HOST: 0.0.0.0
PORT: 8000
ports:
- "8800:8000"
healthcheck:
test:
[
"CMD",
"python",
"-c",
"import urllib.request; urllib.request.urlopen('http://127.0.0.1:8000/health', timeout=3).read()",
]
interval: 30s
timeout: 5s
retries: 3
start_period: 20s