Run pull and build before taking the container down.

This commit is contained in:
2025-11-21 08:29:22 -07:00
parent b490c84b37
commit 2d565c94f0
3 changed files with 5 additions and 5 deletions

View File

@@ -46,8 +46,8 @@ fi
echo "nameserver 1.1.1.1" > /etc/resolv.conf echo "nameserver 1.1.1.1" > /etc/resolv.conf
echo -e "\n*** Start the docker container ***" echo -e "\n*** Start the docker container ***"
docker compose down
docker compose build docker compose build
docker compose down
docker compose up -d docker compose up -d
echo -e "\n*** Now use the local process for DNS ***\n/etc/resolv.conf:" echo -e "\n*** Now use the local process for DNS ***\n/etc/resolv.conf:"

View File

@@ -9,7 +9,7 @@ of the apps you would like to be present.
If any apps get updated, rebuilding the container should pull any changes. If any apps get updated, rebuilding the container should pull any changes.
``` shell ``` shell
docker compose down
docker compose build docker compose build
docker compose down
docker compose up -d docker compose up -d
``` ```

View File

@@ -62,9 +62,9 @@ If the proxy needs turned off either stop or down may be used.
Upgrading the containers is as easy as this: Upgrading the containers is as easy as this:
``` ```
# docker compose down
# docker compose pull # docker compose pull
# docker compose build # docker compose build
# docker compose down
# docker compose up -d # docker compose up -d
``` ```
@@ -75,15 +75,15 @@ This may be possible to do when the system is up, but the best results have come
This is essentially an upgrade but there is no pull. This is essentially an upgrade but there is no pull.
``` ```
# docker compose down
# docker compose build # docker compose build
# docker compose down
# docker compose up -d # docker compose up -d
``` ```
If wanted as a one-line command: If wanted as a one-line command:
``` ```
# docker compose down && docker compose build && docker compose up -d # docker compose build && docker compose down && docker compose up -d
``` ```
## Add New Config ## Add New Config