Updated docker container instructions

This commit is contained in:
Paulus Schoutsen 2015-01-05 21:02:43 -08:00
parent b90826c267
commit ed1f434a61
2 changed files with 1 additions and 3 deletions

View File

@ -3,6 +3,4 @@ MAINTAINER Paulus Schoutsen <Paulus@PaulusSchoutsen.nl>
VOLUME /config
EXPOSE 8123
CMD [ "python", "-m", "homeassistant", "--config", "/config" ]

View File

@ -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).