Skip to content
This repository has been archived by the owner on Nov 23, 2023. It is now read-only.
roobbb edited this page Jan 3, 2021 · 11 revisions

Welcome to the wiki for the docker container project "roobbb/owserver".

run command for testing purposes (e.g. different archs)

docker run -it --name=owserver --net=host -v /etc/localtime:/etc/localtime:ro -v ~/mypath/owserver:/root/.local/share --device=/dev/ttyS0 -e CUSTOM_CONFIG_ENABLED=1 -e CUSTOM_CONFIG_FILE=/root/.local/share/owfs.example roobbb/owserver:dev

keeping container up to date on your Raspi

docker run -d \
 --name watchtower \
 --restart=always \
 -v /etc/timezone:/etc/timezone:ro \
 -v /var/run/docker.sock:/var/run/docker.sock \
 -e WATCHTOWER_NOTIFICATIONS=shoutrrr \
 -e WATCHTOWER_NOTIFICATION_URL="telegram://123456789:aabbccddeef-abcdefghijklmnopqrstuvw@telegram?channels=987654321" \
 containrrr/watchtower:armhf-latest \
  --schedule "0 0 0 * * SUN" \
  --cleanup
  • starts watchtower and let it check every sunday if a new version of latest is available
  • if so, it downloads latest, removes the old one and starts the new one
  • finally it informs via telegram what has been done