10 Commits

Author SHA1 Message Date
375bad3eb1 Build 10-8-2025
All checks were successful
Build and Push Pihole Nightly Image / build (push) Successful in 2m39s
Build and Push Pihole Latest Image / build (push) Successful in 41s
2025-10-08 23:51:49 -04:00
b27972564b Build 8-28-2025
Some checks failed
Build and Push Pihole Nightly Image / build (push) Successful in 55s
Build and Push Pihole Latest Image / build (push) Successful in 35s
Build and Push Pihole Dev Image / build (push) Failing after 20s
2025-08-28 09:44:47 -04:00
84cd6c18cf Build
All checks were successful
Build and Push Pihole Latest Image / build (push) Successful in 1m29s
Build and Push Pihole Nightly Image / build (push) Successful in 53s
Build and Push Pihole Dev Image / build (push) Successful in 42s
2025-04-28 13:30:47 -04:00
d7075991bc Build
All checks were successful
Build and Push Pihole Latest Image / build (push) Successful in 37s
Build and Push Pihole Nightly Image / build (push) Successful in 42s
Build and Push Pihole Dev Image / build (push) Successful in 27s
2024-12-15 14:28:38 -05:00
19d1351716 Build
All checks were successful
Build and Push Pihole Latest Image / build (push) Successful in 42s
2024-12-15 14:24:07 -05:00
dc857f0dc7 Build Latest
All checks were successful
Build and Push Docker Image / build (push) Successful in 37s
2024-12-14 11:26:16 -05:00
73df4ec3ff Build Latest
All checks were successful
Build and Push Docker Image / build (push) Successful in 2m28s
2024-12-14 11:14:42 -05:00
7a0dfe6b1e Build Latest
All checks were successful
Build and Push Docker Image / build (push) Successful in 27s
2024-12-08 23:30:34 -05:00
ac65240cb6 Build DEC 1 2029
All checks were successful
Build and Push Docker Image / build (push) Successful in 52s
2024-12-01 09:01:57 -05:00
d5fc231e4e Build NOV 28 2024
All checks were successful
Build and Push Docker Image / build (push) Successful in 54s
2024-11-28 09:21:34 -05:00
4 changed files with 39 additions and 6 deletions

View File

@@ -1,9 +1,11 @@
name: Build and Push Docker Image name: Build and Push Pihole Latest Image
on: on:
push: push:
branches: branches:
- main - main
schedule:
- cron: "0 2 * * 1,4"
jobs: jobs:
build: build:
@@ -12,15 +14,17 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v2 uses: actions/checkout@v2
with:
ref: main
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1 uses: docker/setup-buildx-action@v1
- name: Log in to Gitea Registry - name: Log in to Gitea Registry
run: echo ${{ secrets.PIHOLE }} | docker login gitea.awptechnologies.co -u ${{ vars.OWNER }} --password-stdin run: echo ${{ secrets.BUILD }} | docker login gitea.awptechnologies.co -u ${{ vars.OWNER }} --password-stdin
- name: Build Docker Image - name: Build Docker Image
run: docker build -t gitea.awptechnologies.co/${{ vars.OWNER }}/pihole-unbound:latest . run: docker build --no-cache -t gitea.awptechnologies.co/${{ vars.OWNER }}/pihole-unbound:latest .
- name: Push Docker Image to Gitea - name: Push Docker Image to Gitea
run: docker push gitea.awptechnologies.co/${{ vars.OWNER }}/pihole-unbound:latest run: docker push gitea.awptechnologies.co/${{ vars.OWNER }}/pihole-unbound:latest

View File

@@ -0,0 +1,30 @@
name: Build and Push Pihole Nightly Image
on:
push:
branches:
- nightly
schedule:
- cron: "0 2 * * 1,4"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
ref: nightly
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to Gitea Registry
run: echo ${{ secrets.BUILD }} | docker login gitea.awptechnologies.co -u ${{ vars.OWNER }} --password-stdin
- name: Build Docker Image
run: docker build --no-cache -t gitea.awptechnologies.co/${{ vars.OWNER }}/pihole-unbound:nightly .
- name: Push Docker Image to Gitea
run: docker push gitea.awptechnologies.co/${{ vars.OWNER }}/pihole-unbound:nightly

View File

@@ -1,8 +1,8 @@
#ARG PIHOLE_VERSION #ARG PIHOLE_VERSION
FROM pihole/pihole:development FROM pihole/pihole:latest
RUN apk update RUN apk update
RUN apk add --no-cache unbound curl ca-certificates \ RUN apk add --no-cache unbound curl ca-certificates \
&& curl -o /etc/unbound/root.hints https://www.internic.net/domain/named.cache && curl -o /etc/unbound/root.hints https://www.internic.net/domain/named.cache
RUN apk add --no-cache iputils-ping RUN apk add --no-cache iputils-ping
COPY config/unbound/unbound.conf /etc/unbound/unbound.conf COPY config/unbound/unbound.conf /etc/unbound/unbound.conf

View File

@@ -1 +0,0 @@
just a test