google-home-notification-gateway
google-home-notification-gateway copied to clipboard
How to run container
Sorry, but I'm a newbie to docker.... I've pulled the image successfully... If I do
docker image ls
I get:
REPOSITORY TAG IMAGE ID CREATED SIZE marlburrow/ghng latest 6b4c5ad1dd8e 5 weeks ago 440MB
so I tried:
docker run -i --expose=3000 6b4c5ad1dd8e bash
but I get the error:
docker: Error response from daemon: OCI runtime create failed: container_linux.go:348: starting container process caused "exec: "bash": executable file not found in $PATH": unknown.
I've tried
docker run -i --expose=3000 6b4c5ad1dd8e start.js
which gives me the error:
docker: Error response from daemon: OCI runtime create failed: container_linux.go:348: starting container process caused "exec: "start.js": executable file not found in $PATH": unknown.
Update:
tried:
docker run -p 3000:3000 6b4c5ad1dd8e
and now it seems to run... at least I get something if I go to localhost:3000 TIA
/Søren