1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/ftldns/Dockerfile

37 lines
1.1 KiB
Docker
Raw Normal View History

2023-11-26 08:26:19 +00:00
#
# Dockerfile for FTLDNS (pihole-FTL)
#
FROM alpine:3
MAINTAINER EasyPi Software Foundation
2024-02-23 05:04:10 +00:00
ARG FTL_VERSION=v5.25.1
2023-11-28 13:53:04 +00:00
ARG FTL_FILE=pihole-FTL-musl-linux-x86_64
2024-02-27 11:20:48 +00:00
ARG FTL_GIT=https://github.com/pi-hole
ARG FTL_URL=${FTL_GIT}/FTL/releases/download/${FTL_VERSION}/${FTL_FILE}
2023-11-26 08:26:19 +00:00
RUN set -xe \
&& apk add --no-cache curl \
&& echo "conf-dir=/etc/pihole/dnsmasq.d,*.conf" >> /etc/dnsmasq.conf \
2023-11-28 13:53:04 +00:00
&& curl -sSL ${FTL_URL} -o /usr/bin/pihole-FTL \
2023-11-26 08:26:19 +00:00
&& chmod +x /usr/bin/pihole-FTL \
&& pihole-FTL --version \
2024-02-27 11:20:48 +00:00
&& mkdir -p /opt/pihole \
&& cd /opt/pihole \
&& curl -sSL -O ${FTL_GIT}/pi-hole/raw/master/advanced/Scripts/list.sh \
-O ${FTL_GIT}/pi-hole/raw/master/advanced/Scripts/utils.sh \
2024-02-28 02:58:21 +00:00
-O ${FTL_GIT}/pi-hole/raw/master/advanced/Scripts/chronometer.sh \
2024-02-27 11:20:48 +00:00
-O ${FTL_GIT}/pi-hole/raw/master/advanced/Scripts/COL_TABLE \
&& cd /usr/local/bin \
&& curl -sSL ${FTL_GIT}/pi-hole/raw/master/pihole -o /usr/local/bin/pihole \
2024-02-28 02:58:21 +00:00
&& chmod +x /usr/local/bin/pihole /opt/pihole/*.sh \
2023-11-26 08:26:19 +00:00
&& apk del curl
VOLUME /etc/pihole
2023-11-28 13:34:22 +00:00
EXPOSE 4711/tcp \
53/tcp \
2023-11-26 08:26:19 +00:00
53/udp
CMD ["pihole-FTL", "-f"]