21 lines
428 B
YAML
21 lines
428 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.
|