Update building and base container to 2022.09.2 (#161)
This commit is contained in:
parent
77c9778f61
commit
2dd3f775c6
3 changed files with 6 additions and 4 deletions
|
@ -1,4 +1,5 @@
|
||||||
FROM pihole/pihole:2022.08.2
|
ARG PIHOLE_VERSION
|
||||||
|
FROM pihole/pihole:${PIHOLE_VERSION:-latest}
|
||||||
RUN apt update && apt install -y unbound
|
RUN apt update && apt install -y unbound
|
||||||
|
|
||||||
COPY lighttpd-external.conf /etc/lighttpd/external.conf
|
COPY lighttpd-external.conf /etc/lighttpd/external.conf
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
2022.08.2
|
2022.09.2
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Run this once: docker buildx create --use --name build --node build --driver-opt network=host
|
# Run this once: docker buildx create --use --name build --node build --driver-opt network=host
|
||||||
docker buildx build --platform linux/arm/v7,linux/arm64/v8,linux/amd64 -t cbcrowe/pihole-unbound:`cat VERSION` --push .
|
PIHOLE_VER=`cat VERSION`
|
||||||
docker buildx build --platform linux/arm/v7,linux/arm64/v8,linux/amd64 -t cbcrowe/pihole-unbound:latest --push .
|
docker buildx build --build-arg PIHOLE_VERSION=$PIHOLE_VER --platform linux/arm/v7,linux/arm64/v8,linux/amd64 -t cbcrowe/pihole-unbound:$PIHOLE_VER --push .
|
||||||
|
docker buildx build --build-arg PIHOLE_VERSION=$PIHOLE_VER --platform linux/arm/v7,linux/arm64/v8,linux/amd64 -t cbcrowe/pihole-unbound:latest --push .
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue