nextcloud Files.

This commit is contained in:
Olli Graf
2025-08-07 13:53:12 +02:00
parent 8e70b0246d
commit 89c7dc9faf
4 changed files with 53 additions and 5 deletions

View File

@@ -1,5 +1,8 @@
#! /usr/bin/bash
echo "pulling image ${1}"
docker pull ${1}
echo "removing container ${2}"
docker rm -f ${2}

View File

@@ -1,10 +1,12 @@
#! /usr/bin/bash
export COMPOSE_IGNORE_ORPHANS=True
echo "pulling new images"
docker pull ghcr.io/home-assistant/home-assistant:stable
docker pull zwavejs/zwavejs2mqtt:latest
echo "removing container"
docker rm -f homeassistant zwavejs2mqtt
#echo "pulling new images"
#docker pull ghcr.io/home-assistant/home-assistant:stable
#docker pull zwavejs/zwavejs2mqtt:latest
#echo "removing container"
#docker rm -f homeassistant zwavejs2mqtt
./update-container ghcr.io/home-assistant/home-assistant:stable homeassistant
./update-container zwavejs/zwavejs2mqtt:latest zwavejs2mqtt
echo "creating new container"
docker-compose -f ./docker-compose.yml up -d