From f59a12052c911d21a8acbab4b37dc3ec9a8e632a Mon Sep 17 00:00:00 2001 From: John Dorman Date: Sun, 14 Jun 2020 08:56:55 -0700 Subject: [PATCH] Adding restart flags --- AdguardHome/README.md | 2 +- nextdns/README.md | 2 +- run-pihole/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/AdguardHome/README.md b/AdguardHome/README.md index e623eb1..0cec860 100644 --- a/AdguardHome/README.md +++ b/AdguardHome/README.md @@ -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/" \ diff --git a/nextdns/README.md b/nextdns/README.md index c0d38aa..840955d 100644 --- a/nextdns/README.md +++ b/nextdns/README.md @@ -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 \ diff --git a/run-pihole/README.md b/run-pihole/README.md index 8ad0c00..ba97831 100644 --- a/run-pihole/README.md +++ b/run-pihole/README.md @@ -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/" \