Please see the docker-compose.yml
Port | Protocol | Description |
---|---|---|
67 | UDP | DHCP Server |
Docker daemon will not pass the broadcast packets to the container because the container internally has an IP specific to the bridge network (e.g. 172.16.10.1) but the broadcast packet will be sent with the IP of your host machine (e.g. 192.168.2.50). The bridge will therefore decide the broadcast packet was not meant for the container and will not forward it.
Container path | Description |
---|---|
/config | Configuration directory which must contain the dhcpd.conf file. See the official documentation on how to configure the DHCP server. |
/leases | This is where the DHCP server records which IP addresses have been leased to individual clients. The location must be writable by the PUID/PGID. |
The container is regularly scanned for vulnerabilities and updated. Further info can be found in the Security tab.
The container uses UID:GID of 1000:1000 by default. Image must be rebuilt in case you need to use a different UID or GID due to file permissions.