You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
319 B
10 lines
319 B
#! /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 "creating new container"
|
|
docker-compose -f ./docker-compose.yml up -d
|
|
|