Adding restart flags

This commit is contained in:
John Dorman 2020-06-14 08:56:55 -07:00
parent 3cc9acaac9
commit f59a12052c
3 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ The on-boot script needs to be setup after firmware update of UDM. When on-boot
6. Run the AdguardHome docker container, be sure to make the directories for your persistent AdguardHome configuration. They are mounted as volumes in the command below.
```
podman run -d --network dns \
podman run -d --network dns --restart always \
--name adguardhome \
-v "/mnt/data/AdguardHome-Confdir/:/opt/adguardhome/conf/" \
-v "/mnt/data/AdguardHome-Workdir/:/opt/adguardhome/work/" \

View File

@ -39,7 +39,7 @@ If you have already installed PiHole, skip right to step 6.
6. Create /mnt/data/nextdns and copy [nextdns.conf](https://github.com/boostchicken/udm-utilities/blob/master/nextdns/udm-files/nextdns.conf) to it.
7. Run the NextDNS docker container. Mounting dbus and running in privileged is only required for mDNS. Also, please change the --dns arguments to whatever was provided by NextDNS.
```
podman run -d --privileged --network dns \
podman run -d --privileged --network dns --restart always \
--name nextdns \
-v "/mnt/data/nextdns/:/etc/nextdns/" \
-v /var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket \

View File

@ -21,7 +21,7 @@
6. Run the pihole docker container, be sure to make the directories for your persistent pihole configuration. They are mounted as volumes in the command below.
```
podman run -d --network dns \
podman run -d --network dns --restart always \
--name pihole \
-e TZ="America/Los Angeles" \
-v "/mnt/data/etc-pihole/:/etc/pihole/" \