ISC Stork agents. These agents are required for communication with Stork server. Needs Postgres DB.
1.4K
services:
kea-dhcp4:
image: dijkstrasolutions/kea-dhcp4:${KEA_DHCP4_TAG:-latest}
container_name: kea-dhcp
network_mode: host
cap_add:
- NET_ADMIN
volumes:
- /opt/kea/config:/kea/etc/kea
- /opt/kea/logs:/var/log
- kea-run:/var/run/kea
command: ["/usr/sbin/kea-dhcp4", "-c", "/kea/etc/kea/kea-dhcp4.conf"]
restart: unless-stopped
healthcheck:
test: ["CMD", "pgrep", "-f", "kea-dhcp4"]
interval: 10s
timeout: 5s
retries: 5
start_period: 5s
kea-ctrl-stork:
image: dijkstrasolutions/kea-ctrl-stork-agents:${KEA_AGENTS_TAG:-latest}
container_name: kea-ctrl-stork
environment:
ENABLE_CTRL_AGENT: "true"
ENABLE_STORK_AGENT: "true"
volumes:
- /opt/kea/config:/kea/etc/kea:ro
- /opt/kea/logs:/var/log/kea
- /opt/stork:/etc/stork
- /opt/stork/server-agent/hooks:/usr/lib/stork-agent/hooks
- /opt/stork/logs:/var/log/stork-agent
- /opt/stork/agent:/var/lib/stork-agent
- kea-run:/var/run/kea # share with kea-dhcp4
ports:
- "8000:8000" # stork agent
- "8081:8081" # kea control agent
restart: unless-stopped
healthcheck:
test: ["CMD", "pgrep", "-f", "stork-agent"]
interval: 10s
timeout: 5s
retries: 5
start_period: 5s
volumes:
kea-run:
Content type
Image
Digest
sha256:9387c8b6a…
Size
97 MB
Last updated
6 months ago
docker pull dijkstrasolutions/kea-ctrl-stork-agents