Skip to content

Commit

Permalink
Document using host docker daemon (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
issacg authored Apr 29, 2020
1 parent 06eeb07 commit 2cc9946
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ Local repository:
docker run --rm --privileged -v ~/.docker:/root/.docker -v /my_addon:/data homeassistant/amd64-builder --all -t /data
```

## Docker Daemon
By default the image will run docker-in-docker. You can use the host docker daemon by bind mounting the host docker socket to `/var/run/docker.sock` inside the container. For example, to do this with the _Local repository_ example above (assuming the host docker socket is at `/var/run/docker.sock`:

```bash
docker run --rm --privileged -v ~/.docker:/root/.docker -v /var/run/docker.sock:/var/run/docker.sock:ro -v /my_addon:/data homeassistant/amd64-builder --all -t /data
```

## Help

```bash
Expand Down

0 comments on commit 2cc9946

Please sign in to comment.