This is the docker image for SweetHomeBot on Raspberry Pi.
docker build --tag erdnussflips/sweethomebot ./build
docker volume create sweethomebot_data
docker run -it -d -p 8070:80 \
-v sweethomebot_data:/app/sweethomebot \
--name sweethomebot \
erdnussflips/sweethomebot
You can mount the folder /app/sweethomebot as docker volume, so your data is saved across container lifecycle.
- For Wake on lan to work, you must run the container on the host network stack with "--network=host"