mirror of
https://github.com/netbootxyz/docker-netbootxyz.git
synced 2025-08-07 06:37:43 +02:00
19 lines
569 B
Plaintext
19 lines
569 B
Plaintext
---
|
|
version: "2.1"
|
|
services:
|
|
netbootxyz:
|
|
image: ghcr.io/netbootxyz/netbootxyz
|
|
container_name: netbootxyz
|
|
environment:
|
|
- MENU_VERSION=2.0.47 # optional
|
|
- NGINX_PORT=80 # optional
|
|
- WEB_APP_PORT=3000 # optional
|
|
volumes:
|
|
- /path/to/config:/config # optional
|
|
- /path/to/assets:/assets # optional
|
|
ports:
|
|
- 3000:3000 # optional, destination should match ${WEB_APP_PORT} variable above.
|
|
- 69:69/udp
|
|
- 8080:80 # optional, destination should match ${NGINX_PORT} variable above.
|
|
restart: unless-stopped
|