diff --git a/compose-monitor.yml b/compose-monitor.yml index 6dc592e..e72f4f9 100644 --- a/compose-monitor.yml +++ b/compose-monitor.yml @@ -28,4 +28,22 @@ services: test: ["CMD-SHELL", "wget -q --spider http://localhost:8090 || exit 1"] interval: 30s timeout: 5s + retries: 3 + + atlas: + image: keinstien/atlas:latest + container_name: atlas + restart: unless-stopped + network_mode: host + cap_add: + - NET_ADMIN + - NET_RAW + volumes: + - /var/run/docker.sock:/var/run/docker.sock + environment: + - ATLAS_PORT=8888 + healthcheck: + test: ["CMD-SHELL", "wget -q --spider http://localhost:8888 || exit 1"] + interval: 30s + timeout: 5s retries: 3 \ No newline at end of file