diff --git a/Dockerfile b/Dockerfile index b103cf4545f..1c13ac9542e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,4 @@ MAINTAINER Paulus Schoutsen VOLUME /config -EXPOSE 8123 - CMD [ "python", "-m", "homeassistant", "--config", "/config" ] diff --git a/README.md b/README.md index 62d20f7df4c..3740181f362 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ This will start the Home Assistant server and create an initial configuration fi If you're using Docker, you can use ```bash -docker run -d --name="home-assistant" -v /path/to/homeassistant/config:/config -v /etc/localtime:/etc/localtime:ro -p 8123:8123 balloob/home-assistant +docker run -d --name="home-assistant" -v /path/to/homeassistant/config:/config -v /etc/localtime:/etc/localtime:ro --net=host balloob/home-assistant ``` After you got the demo mode running it is time to enable some real components and get started. An example configuration file has been provided in [/config/home-assistant.conf.example](https://github.com/balloob/home-assistant/blob/master/config/home-assistant.conf.example).