mirror of
https://github.com/linuxserver/docker-webtop.git
synced 2025-07-27 07:34:45 +02:00
Bot Updating Templated Files
This commit is contained in:
parent
f6e9f33f62
commit
580ad4b894
@ -7,12 +7,10 @@ project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/ma
|
|||||||
project_blurb: |
|
project_blurb: |
|
||||||
[{{ project_name|capitalize }}]({{ project_url }}) - Alpine, Ubuntu, Fedora, and Arch based containers containing full desktop environments in officially supported flavors accessible via any modern web browser.
|
[{{ project_name|capitalize }}]({{ project_url }}) - Alpine, Ubuntu, Fedora, and Arch based containers containing full desktop environments in officially supported flavors accessible via any modern web browser.
|
||||||
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
|
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
|
||||||
|
|
||||||
# supported architectures
|
# supported architectures
|
||||||
available_architectures:
|
available_architectures:
|
||||||
- {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
|
- {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
|
||||||
- {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
|
- {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
|
||||||
|
|
||||||
# development version
|
# development version
|
||||||
development_versions: true
|
development_versions: true
|
||||||
development_versions_items:
|
development_versions_items:
|
||||||
@ -46,7 +44,6 @@ development_versions_items:
|
|||||||
- {tag: "fedora-icewm", desc: "IceWM Fedora"}
|
- {tag: "fedora-icewm", desc: "IceWM Fedora"}
|
||||||
- {tag: "arch-icewm", desc: "IceWM Arch"}
|
- {tag: "arch-icewm", desc: "IceWM Arch"}
|
||||||
- {tag: "debian-icewm", desc: "IceWM Debian"}
|
- {tag: "debian-icewm", desc: "IceWM Debian"}
|
||||||
|
|
||||||
# container parameters
|
# container parameters
|
||||||
param_container_name: "{{ project_name }}"
|
param_container_name: "{{ project_name }}"
|
||||||
param_usage_include_vols: true
|
param_usage_include_vols: true
|
||||||
@ -75,14 +72,12 @@ opt_security_opt_param_vars:
|
|||||||
opt_param_device_map: true
|
opt_param_device_map: true
|
||||||
opt_param_devices:
|
opt_param_devices:
|
||||||
- {device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "Add this for GL support (Linux hosts only)"}
|
- {device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "Add this for GL support (Linux hosts only)"}
|
||||||
|
|
||||||
# Kasm blurb settings
|
# Kasm blurb settings
|
||||||
kasm_blurb: true
|
kasm_blurb: true
|
||||||
show_nvidia: true
|
show_nvidia: true
|
||||||
external_http_port: "3000"
|
external_http_port: "3000"
|
||||||
external_https_port: "3001"
|
external_https_port: "3001"
|
||||||
noto_fonts: "font-noto-cjk"
|
noto_fonts: "font-noto-cjk"
|
||||||
|
|
||||||
# application setup block
|
# application setup block
|
||||||
app_setup_block_enabled: true
|
app_setup_block_enabled: true
|
||||||
app_setup_block: |
|
app_setup_block: |
|
||||||
@ -90,7 +85,68 @@ app_setup_block: |
|
|||||||
|
|
||||||
* http://yourhost:3000/
|
* http://yourhost:3000/
|
||||||
* https://yourhost:3001/
|
* https://yourhost:3001/
|
||||||
|
# init diagram
|
||||||
|
init_diagram: |
|
||||||
|
"webtop:latest": {
|
||||||
|
docker-mods
|
||||||
|
base {
|
||||||
|
fix-attr +\nlegacy cont-init
|
||||||
|
}
|
||||||
|
docker-mods -> base
|
||||||
|
legacy-services
|
||||||
|
custom services
|
||||||
|
init-services -> legacy-services
|
||||||
|
init-services -> custom services
|
||||||
|
custom services -> legacy-services
|
||||||
|
legacy-services -> ci-service-check
|
||||||
|
init-migrations -> init-adduser
|
||||||
|
init-kasmvnc-end -> init-config
|
||||||
|
init-os-end -> init-config
|
||||||
|
init-config -> init-config-end
|
||||||
|
init-os-end -> init-crontab-config
|
||||||
|
init-mods-end -> init-custom-files
|
||||||
|
base -> init-envfile
|
||||||
|
init-os-end -> init-kasmvnc
|
||||||
|
init-nginx -> init-kasmvnc-config
|
||||||
|
init-video -> init-kasmvnc-end
|
||||||
|
base -> init-migrations
|
||||||
|
base -> init-mods
|
||||||
|
init-config-end -> init-mods
|
||||||
|
init-mods -> init-mods-end
|
||||||
|
init-mods-package-install -> init-mods-end
|
||||||
|
init-mods -> init-mods-package-install
|
||||||
|
init-kasmvnc -> init-nginx
|
||||||
|
base -> init-os-end
|
||||||
|
init-adduser -> init-os-end
|
||||||
|
init-envfile -> init-os-end
|
||||||
|
init-migrations -> init-os-end
|
||||||
|
init-custom-files -> init-services
|
||||||
|
init-mods-end -> init-services
|
||||||
|
init-kasmvnc-config -> init-video
|
||||||
|
init-services -> svc-cron
|
||||||
|
svc-cron -> legacy-services
|
||||||
|
init-services -> svc-de
|
||||||
|
svc-nginx -> svc-de
|
||||||
|
svc-de -> legacy-services
|
||||||
|
init-services -> svc-docker
|
||||||
|
svc-de -> svc-docker
|
||||||
|
svc-docker -> legacy-services
|
||||||
|
init-services -> svc-kasmvnc
|
||||||
|
svc-pulseaudio -> svc-kasmvnc
|
||||||
|
svc-kasmvnc -> legacy-services
|
||||||
|
init-services -> svc-kclient
|
||||||
|
svc-kasmvnc -> svc-kclient
|
||||||
|
svc-kclient -> legacy-services
|
||||||
|
init-services -> svc-nginx
|
||||||
|
svc-kclient -> svc-nginx
|
||||||
|
svc-nginx -> legacy-services
|
||||||
|
init-services -> svc-pulseaudio
|
||||||
|
svc-pulseaudio -> legacy-services
|
||||||
|
}
|
||||||
|
Base Images: {
|
||||||
|
"baseimage-kasmvnc:alpine320" <- "baseimage-alpine:3.20"
|
||||||
|
}
|
||||||
|
"webtop:latest" <- Base Images
|
||||||
# changelog
|
# changelog
|
||||||
changelogs:
|
changelogs:
|
||||||
- {date: "26.09.24:", desc: "Swap from firefox to chromium on Alpine images."}
|
- {date: "26.09.24:", desc: "Swap from firefox to chromium on Alpine images."}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user