29 lines
526 B
YAML
29 lines
526 B
YAML
---
|
|
version: "3.8"
|
|
services:
|
|
web-check:
|
|
image: lissy93/web-check
|
|
container_name: web-check
|
|
restart: unless-stopped
|
|
ports:
|
|
- 3010:3000
|
|
environment:
|
|
- UID=1000
|
|
- GID=1000
|
|
healthcheck:
|
|
test:
|
|
- CMD
|
|
- curl
|
|
- -f
|
|
- http://localhost:3000
|
|
interval: 1m
|
|
timeout: 15s
|
|
retries: 3
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: 10m
|
|
max-file: "3"
|
|
labels:
|
|
- com.centurylinklabs.watchtower.enable=true
|