mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-14 11:23:02 +02:00
14 lines
237 B
YAML
14 lines
237 B
YAML
version: "3.8"
|
|
services:
|
|
dnsmasq:
|
|
image: vimagick/dnsmasq
|
|
ports:
|
|
- "53:53/tcp"
|
|
- "53:53/udp"
|
|
- "67:67/udp"
|
|
volumes:
|
|
- ./data:/etc/dnsmasq.d
|
|
cap_add:
|
|
- NET_ADMIN
|
|
restart: unless-stopped
|