File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ set -euo pipefail
2121export BUILDKIT_PROGRESS=plain
2222
2323# Update system
24- if ! dpkg -l | grep git; then
24+ if ! dpkg -l | grep git & > /dev/null ; then
2525 sudo apt update
2626 sudo apt dist-upgrade -y
2727 sudo apt install -y git vim python3 python3-requests python3-jinja2 htop
2828fi
2929
3030# Install docker based on https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository
31- if ! dpkg -l | grep docker-ce; then
31+ if ! dpkg -l | grep docker-ce & > /dev/null ; then
3232 sudo apt install -y apt-transport-https \
3333 ca-certificates \
3434 curl \
@@ -58,6 +58,7 @@ echo -n "${ROOT_DOMAIN}" >config/root_domain
5858echo -n " ${FIELD_NAME} " > config/field_name
5959./config/docker/init.sh
6060./config/caddy/generate_caddyfile.py
61+ docker compose pull --quiet
6162docker compose up -d
6263sleep 30s
6364./config/guacamole/update_guacamole.py
You can’t perform that action at this time.
0 commit comments