docker-status/docker-compose.yaml

16 lines
393 B
YAML
Raw Permalink Normal View History

2023-08-08 23:56:22 +00:00
services:
2023-08-09 10:02:01 +00:00
app:
2023-08-08 23:56:22 +00:00
build: .
image: docker_status:latest
container_name: docker-status
ports:
2023-08-09 10:02:01 +00:00
- 127.0.0.1:1111:80
2023-08-08 23:56:22 +00:00
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ${PWD}/config.json:/app/config.json:ro
2023-08-09 11:59:23 +00:00
#healthcheck:
# test: wget -nv --tries=1 --spider http://localhost/stats || exit 1
# interval: 30s
# timeout: 5s
# retries: 2