13 lines
316 B
YAML
13 lines
316 B
YAML
|
|
version: '3.8'
|
||
|
|
|
||
|
|
services:
|
||
|
|
maddoscientisto-web:
|
||
|
|
image: forgejo.maddoscientisto.net/maddo/maddoscientisto-web:latest
|
||
|
|
ports:
|
||
|
|
- "8002:80"
|
||
|
|
restart: unless-stopped
|
||
|
|
healthcheck:
|
||
|
|
test: ["CMD-SHELL", "curl -fsS http://127.0.0.1/ || exit 1"]
|
||
|
|
interval: 30s
|
||
|
|
timeout: 5s
|
||
|
|
retries: 3
|