Docker implementation of the smart home NG software
886
Smarthome NG Docker file
You can run this container independet or orchestrate it with docker-compose
Run the container:
docker run \
-v $(PWD)/etc:/usr/local/smarthome/etc \
-p 8383:8383 \
ralfbs/smarthomeng:latest
You should now be able to point your browser to http://localhost:8383
in order to debug the container, you can login with the params -it and argument bash:
docker run \
-it
-v $(PWD)/etc:/usr/local/smarthome/etc \
-p 8383:8383 \
ralfbs/smarthomeng:latest \
bash
version: '3'
services:
smarthome-ng:
image: ralfbs/smarthomeng:latest
volumes:
- ./config/smarthomeng/etc:/usr/local/smarthome/etc
privileged: true
ports:
- 2323:2323
- 2424:2424
- 8383:8383
restart: always
This docker image is inspired by
Content type
Image
Digest
Size
343.5 MB
Last updated
over 8 years ago
docker pull ralfbs/smarthomeng