Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ using Docker, you can add the `--net=host` option when running the container:
docker run -it --rm --net=host ferrarimarco/pxe
```

or if you like docker compose

```shell
docker compose up -d
```

The container image is also available on GitHub container registry: [`ghcr.io/ferrarimarco/pxe`](https://github.com/ferrarimarco/docker-pxe/pkgs/container/pxe).

This container image is multi-platform, and supports the following platforms:
Expand Down
7 changes: 7 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
services:
docker-pxe:
image: pxe
build: .
network_mode: host
cap_add:
- NET_ADMIN