Files
Docker-Compose/IT-Tools/docker-compose.yaml
T
2026-05-11 10:43:12 -07:00

17 lines
526 B
YAML

services:
app:
image: corentinth/it-tools:${IT-TOOLS_VERSION:-latest}
container_name: it-tools-app
ports:
- ${IT-TOOLS_PORT:-8000}:80
healthcheck:
test: ["CMD-SHELL", "wget --no-verbose --tries=1 --spider http://127.0.0.1/ || exit 1"]
interval: 30s
timeout: 10s
retries: 3
start_period: 15s
deploy:
resources:
limits:
memory: 512m
restart: unless-stopped