Files
Docker-01/Ittools/docker-compose.yml
T
miker 47646e1c61
Deploy Ittools / deploy (push) Successful in 11s
Update Ittools/docker-compose.yml
2026-07-20 15:09:21 +00:00

21 lines
427 B
YAML

services:
it-tools:
image: 'corentinth/it-tools:latest'
ports:
- '8150:80'
restart: unless-stopped
container_name: it-tools
networks:
- external
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:80"]
interval: 10s
retries: 3
timeout: 10s
start_period: 30s
networks:
external:
external: true # Tells Compose not to create this network.