Created
June 30, 2026 11:49
-
-
Save indigo423/698c508d7ffb9532d4c06816d9b012f9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| services: | |
| nl6: | |
| image: ghcr.io/labmonkeys-space/nl6:latest | |
| cap_add: | |
| - NET_ADMIN | |
| - SYS_ADMIN | |
| devices: | |
| - /dev/net/tun | |
| ports: | |
| - "8080:8080" # nl6 web console + REST | |
| healthcheck: | |
| test: ["CMD", "wget", "-qO-", "http://localhost:8080/api/v1/version"] | |
| interval: 5s | |
| timeout: 3s | |
| retries: 24 | |
| minion: | |
| image: opennms/minion:latest | |
| network_mode: "service:nl6" | |
| depends_on: | |
| nl6: | |
| condition: service_healthy | |
| command: ["-c"] | |
| environment: | |
| MINION_ID: nl6-Minion-01 | |
| MINION_LOCATION: nl6-Lab | |
| volumes: | |
| - ./minion-config.yaml:/opt/minion/minion-config.yaml:ro |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment