Source files of the container image volkerraschek/dhcpd https://hub.docker.com/r/volkerraschek/dhcpd
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
CSRBot 26ad670193
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is failing Details
chore(deps): update quay.io/skopeo/stable docker tag to v1.13.3
4 days ago
rootfs/usr/local/bin Initial Commit 2 years ago
.drone.yml chore(deps): update quay.io/skopeo/stable docker tag to v1.13.3 4 days ago
.editorconfig Initial Commit 2 years ago
.gitattributes Initial Commit 2 years ago
.gitignore Initial Commit 2 years ago
.markdownlint.yaml Initial Commit 2 years ago
Dockerfile fix: remove arch linux pkgs from cache 4 months ago
LICENSE Initial Commit 2 years ago
Makefile fix: migrate to git.cryptic.systems 3 months ago
README.md Initial Commit 2 years ago
docker-compose.yml Initial Commit 2 years ago
manifest.tmpl fix: migrate to git.cryptic.systems 3 months ago
renovate.json fix(renovate): exclude updating docker.io/plugins/docker 3 weeks ago

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