Convert compose files to yaml
toml conversion stopped working, don't want to fix it
This commit is contained in:
parent
9014f87dfd
commit
037967efd7
49 changed files with 904 additions and 773 deletions
|
@ -1,20 +0,0 @@
|
|||
[volumes]
|
||||
config = {}
|
||||
assets = {}
|
||||
|
||||
[services.netbootxyz]
|
||||
image = "lscr.io/linuxserver/netbootxyz"
|
||||
container_name = "netbootxyz"
|
||||
restart = "unless-stopped"
|
||||
environment = [
|
||||
"PUID=1000",
|
||||
"PGID=1000",
|
||||
"TZ=Etc/UTC",
|
||||
"MENU_VERSION=1.9.9",
|
||||
"PORT_RANGE=30000:30010",
|
||||
"SUBFOLDER=/",
|
||||
"NGINX_PORT=80",
|
||||
"WEB_APP_PORT=3000",
|
||||
]
|
||||
ports = ["3000:3000", "69:69/udp", "8081:80"]
|
||||
volumes = ["config:/config", "assets:/assets"]
|
24
docker/netbootxyz/docker-compose.yaml
Normal file
24
docker/netbootxyz/docker-compose.yaml
Normal file
|
@ -0,0 +1,24 @@
|
|||
volumes:
|
||||
config: {}
|
||||
assets: {}
|
||||
services:
|
||||
netbootxyz:
|
||||
image: lscr.io/linuxserver/netbootxyz
|
||||
container_name: netbootxyz
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Etc/UTC
|
||||
- MENU_VERSION=1.9.9
|
||||
- PORT_RANGE=30000:30010
|
||||
- SUBFOLDER=/
|
||||
- NGINX_PORT=80
|
||||
- WEB_APP_PORT=3000
|
||||
ports:
|
||||
- 3000:3000
|
||||
- 69:69/udp
|
||||
- 8081:80
|
||||
volumes:
|
||||
- config:/config
|
||||
- assets:/assets
|
Loading…
Add table
Add a link
Reference in a new issue