17 lines
526 B
YAML
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 |