robot-u-site/docker-compose.yml
kacper 853e99ca5f
Some checks failed
CI / check (push) Failing after 8s
Prepare deployment and Forgejo CI
2026-04-14 20:17:29 -04:00

25 lines
514 B
YAML

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