Files
UpSnap/docker-compose.yml
2023-01-28 23:10:31 +01:00

12 lines
273 B
YAML

version: "3"
services:
upsnap:
build: .
network_mode: host
command: ["./upsnap", "serve", "--http", "0.0.0.0:8090"]
healthcheck:
test: ["CMD", "curl", "-fs", "http://localhost:8090/api/health"]
interval: 1m
timeout: 10s
retries: 3