Skip to content

Commit

Permalink
add docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
jaromil committed May 14, 2024
1 parent e38e474 commit 4642f0d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
version: '3'
services:

kea-dhcp:
network_mode: "host"
deploy:
replicas: 1
placement:
constraints: [node.role == manager]
image: wastrachan/kea:latest
ports:
- "67:67/udp"
volumes:
- ./containers/kea-dhcp:/data/kea
restart: always

dohd:
build: containers/dohd
# container_name: dohd
network_mode: "host"
deploy:
mode: replicated
replicas: 3
endpoint_mode: vip
image: dyne/dowse:dohd
ports: [ "443" ]

0 comments on commit 4642f0d

Please sign in to comment.