Source files of the container image volkerraschek/dhcpd https://hub.docker.com/r/volkerraschek/dhcpd
Go to file
Markus Pesch 9e9fe2b0d2
continuous-integration/drone/push Build is failing Details
fix(renovate): include dep updates of docker.io/plugins/docker
2023-10-30 21:28:13 +01:00
rootfs/usr/local/bin Initial Commit 2021-08-31 18:37:46 +02:00
.drone.yml Merge pull request 'chore(deps): update git.cryptic.systems/volker.raschek/markdownlint docker tag to v0.37.0' (#18) from renovate/git.cryptic.systems-volker.raschek-markdownlint-0.x into master 2023-10-02 07:58:51 +00:00
.editorconfig Initial Commit 2021-08-31 18:37:46 +02:00
.gitattributes Initial Commit 2021-08-31 18:37:46 +02:00
.gitignore Initial Commit 2021-08-31 18:37:46 +02:00
.markdownlint.yaml Initial Commit 2021-08-31 18:37:46 +02:00
Dockerfile fix: remove arch linux pkgs from cache 2023-06-08 18:33:29 +02:00
LICENSE Initial Commit 2021-08-31 18:37:46 +02:00
Makefile fix: migrate to git.cryptic.systems 2023-06-18 15:20:34 +02:00
README.md Initial Commit 2021-08-31 18:37:46 +02:00
docker-compose.yml Initial Commit 2021-08-31 18:37:46 +02:00
manifest.tmpl fix: migrate to git.cryptic.systems 2023-06-18 15:20:34 +02:00
renovate.json fix(renovate): include dep updates of docker.io/plugins/docker 2023-10-30 21:28:13 +01:00

README.md

dhcpd-docker

Build Status Docker Pulls

This project contains all sources to build the container image docker.io/volkerraschek/dhcpd. The primary goal of the image is to run the ISC-DHCPD server inside a container to support distributions which does not deploy a newer version of the DHCP server.

Usage

IPv4 (default)

$ docker run \
    --env DHCP_INTERFACES=br0 \
    --env DHCP_IP=4 \
    --rm \
    --volume ${PWD}/config:/etc/dhcp:ro \
    --volume ${PWD}/data:/var/lib/dhcp:rw \
    --volume /etc/localtime:/etc/localtime:ro \
      volkerraschek/dhcpd-docker:latest

IPv6

$ docker run \
    --env DHCP_INTERFACES=br0 \
    --env DHCP_IP=4 \
    --rm \
    --volume ${PWD}/config:/etc/dhcpd:ro \
    --volume ${PWD}/data:/var/lib/dhcp:rw \
    --volume /etc/localtime:/etc/localtime:ro \
      volkerraschek/dhcpd-docker:latest

Build image manually

To build the images manually check out the repository with git and use the make command to build the container images.

make container-image/build