diff --git a/images/docker-adguardhome-sync/index.html b/images/docker-adguardhome-sync/index.html index c66119d1e8..9917e0bf7c 100644 --- a/images/docker-adguardhome-sync/index.html +++ b/images/docker-adguardhome-sync/index.html @@ -9,7 +9,7 @@ - TZ=Etc/UTC - CONFIGFILE=/config/adguardhome-sync.yaml #optional volumes: - - /path/to/appdata/config:/config + - /path/to/adguardhome-sync/config:/config ports: - 8080:8080 restart: unless-stopped @@ -20,7 +20,7 @@ -e TZ=Etc/UTC \ -e CONFIGFILE=/config/adguardhome-sync.yaml `#optional` \ -p 8080:8080 \ - -v /path/to/appdata/config:/config \ + -v /path/to/adguardhome-sync/config:/config \ --restart unless-stopped \ lscr.io/linuxserver/adguardhome-sync:latest
Containers are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate <external>:<internal>
respectively. For example, -p 8080:80
would expose port 80
from inside the container to be accessible from the host's IP on port 8080
outside the container.
-p
)¶Parameter | Function |
---|---|
8080 | Port for AdGuardHome Sync's web API. |
-e
)¶Env | Function |
---|---|
PUID=1000 | for UserID - see below for explanation |
PGID=1000 | for GroupID - see below for explanation |
TZ=Etc/UTC | specify a timezone to use, see this list. |
CONFIGFILE=/config/adguardhome-sync.yaml | Set a custom config file. |
-v
)¶Volume | Function |
---|---|
/config | Contains all relevant configuration files. |
Parameter | Function |
---|---|
You can set any environment variable from a file by using a special prepend FILE__
.
As an example:
-e FILE__MYVAR=/run/secrets/mysecretvariable
@@ -46,4 +46,4 @@
--pull \
-t lscr.io/linuxserver/adguardhome-sync:latest .
The ARM variants can be built on x86_64 hardware using multiarch/qemu-user-static
Once registered you can define the dockerfile to use with -f Dockerfile.aarch64
.