mirror of
https://github.com/sujiba/pihole-unbound-hyperlocal.git
synced 2025-07-09 21:35:13 +02:00
renamed docker-compose.yml, fixed typos
This commit is contained in:
parent
ededc3b89b
commit
fd2629924a
3 changed files with 18 additions and 8 deletions
9
.github/workflows/build_main.yml
vendored
9
.github/workflows/build_main.yml
vendored
|
@ -17,6 +17,13 @@ jobs:
|
||||||
username: ${{ secrets.DOCKER_USER }}
|
username: ${{ secrets.DOCKER_USER }}
|
||||||
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
|
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
|
||||||
|
|
||||||
|
- name: Login to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.repository_owner }}
|
||||||
|
password: ${{ secrets.GHCR_ACCESS_TOKEN }}
|
||||||
|
|
||||||
- name: Set up variables
|
- name: Set up variables
|
||||||
run: |
|
run: |
|
||||||
VER=$(cat ./docker-build/VERSION)
|
VER=$(cat ./docker-build/VERSION)
|
||||||
|
@ -41,3 +48,5 @@ jobs:
|
||||||
tags: |
|
tags: |
|
||||||
${{ secrets.DOCKER_USER }}/pihole-unbound-hyperlocal:${{ env.VERSION }}
|
${{ secrets.DOCKER_USER }}/pihole-unbound-hyperlocal:${{ env.VERSION }}
|
||||||
${{ secrets.DOCKER_USER }}/pihole-unbound-hyperlocal:latest
|
${{ secrets.DOCKER_USER }}/pihole-unbound-hyperlocal:latest
|
||||||
|
ghcr.io/${{ secrets.DOCKER_USER }}/pihole-unbound-hyperlocal:${{ env.VERSION }}
|
||||||
|
ghcr.io/${{ secrets.DOCKER_USER }}/pihole-unbound-hyperlocal:latest
|
||||||
|
|
13
README.md
13
README.md
|
@ -16,15 +16,16 @@
|
||||||
> Read https://github.com/pi-hole/docker-pi-hole
|
> Read https://github.com/pi-hole/docker-pi-hole
|
||||||
|
|
||||||
> [!tip]
|
> [!tip]
|
||||||
> Firstly pull the new image with `docker pull ghcr.io/sujiba/pihole-unbound-hyperlocal:2025.03.0`.
|
> Firstly pull the new image with `docker pull ghcr.io/sujiba/pihole-unbound-hyperlocal:latest`.
|
||||||
> Then stop the old container.
|
> Next stop the old container with `docker compose down`.
|
||||||
> Follow the steps described bellow. For the transition you're going to have two folders
|
> Follow the steps described under [First startup](#first-startup).
|
||||||
|
> For the upgrade transition you're going to have two folders
|
||||||
> - old: pihole-unbound-hyperlocal
|
> - old: pihole-unbound-hyperlocal
|
||||||
> - new: pihole-unbound-hyperlocal-v6
|
> - new: pihole-unbound-hyperlocal-v6
|
||||||
>
|
>
|
||||||
> When everything is running, you can delete the old folder.
|
> You can delete the old folder if everything is up and running,
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
- [Pihole + Unbound + Hyperlocal](#pihole--unbound--hyperlocal)
|
- [Pihole + Unbound + Hyperlocal](#pihole--unbound--hyperlocal)
|
||||||
- [Overview](#overview)
|
- [Overview](#overview)
|
||||||
|
@ -67,7 +68,7 @@ cp example.pihole.env pihole.env
|
||||||
vi pihole.env
|
vi pihole.env
|
||||||
|
|
||||||
# Change the ports if you're running a reverse proxy on ports 80 and 443
|
# Change the ports if you're running a reverse proxy on ports 80 and 443
|
||||||
vi compose.yml
|
vi docker-compose.yml
|
||||||
```
|
```
|
||||||
|
|
||||||
Start the container
|
Start the container
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
|
# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
|
||||||
services:
|
services:
|
||||||
pihole-unbound:
|
pihole-unbound:
|
||||||
# You can also use latest | 2025.03.0 | dev | 2025.03.0-dev
|
# You can also use latest | yyyy.mm.x | dev | yyyy.mm.x-dev
|
||||||
image: ghcr.io/sujiba/pihole-unbound-hyperlocal:2025.03.0
|
image: ghcr.io/sujiba/pihole-unbound-hyperlocal:latest
|
||||||
container_name: pihole-unbound
|
container_name: pihole-unbound
|
||||||
hostname: raspi-01
|
hostname: raspi-01
|
||||||
ports:
|
ports:
|
Loading…
Add table
Add a link
Reference in a new issue