@@ -7,55 +7,107 @@ project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/ma
7
7
project_blurb : " [DB Browser for SQLite]({{ project_url }}) is a high quality, visual, open source tool to create, design, and edit database files compatible with SQLite."
8
8
project_lsio_github_repo_url : " https://github.com/linuxserver/docker-{{ project_name }}"
9
9
project_blurb_optional_extras_enabled : false
10
-
11
10
# supported architectures
12
11
available_architectures :
13
- - { arch: "{{ arch_x86_64 }}", tag: "latest"}
14
- - { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
15
-
12
+ - {arch: "{{ arch_x86_64 }}", tag: "latest"}
13
+ - {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
16
14
# development version
17
15
development_versions : false
18
-
19
16
# container parameters
20
17
common_param_env_vars_enabled : true
21
18
param_container_name : " {{ project_name }}"
22
19
param_usage_include_env : true
23
20
param_env_vars :
24
- - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." }
21
+ - {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London."}
25
22
param_usage_include_vols : true
26
23
param_volumes :
27
- - { vol_path: "/config", vol_host_path: "/path/to/config", desc: "Users home directory in the container, stores program settings and potentially dump files." }
24
+ - {vol_path: "/config", vol_host_path: "/path/to/config", desc: "Users home directory in the container, stores program settings and potentially dump files."}
28
25
param_usage_include_ports : true
29
26
param_ports :
30
- - { external_port: "3000", internal_port: "3000", port_desc: "Sqlitebrowser desktop gui." }
31
- - { external_port: "3001", internal_port: "3001", port_desc: "Sqlitebrowser desktop gui HTTPS." }
27
+ - {external_port: "3000", internal_port: "3000", port_desc: "Sqlitebrowser desktop gui."}
28
+ - {external_port: "3001", internal_port: "3001", port_desc: "Sqlitebrowser desktop gui HTTPS."}
32
29
opt_security_opt_param : true
33
30
opt_security_opt_param_vars :
34
- - { run_var: "seccomp=unconfined", compose_var: "seccomp:unconfined", desc: "For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker." }
35
-
31
+ - {run_var: "seccomp=unconfined", compose_var: "seccomp:unconfined", desc: "For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker."}
36
32
# Kasm blurb settings
37
33
kasm_blurb : true
38
34
external_http_port : " 3000"
39
35
external_https_port : " 3001"
40
36
noto_fonts : " font-noto-cjk"
41
-
42
37
# application setup block
43
38
app_setup_block_enabled : true
44
39
app_setup_block : |
45
40
The application can be accessed at:
46
41
47
42
* http://yourhost:3000/
48
43
* https://yourhost:3001/
49
-
44
+ # init diagram
45
+ init_diagram : |
46
+ "sqlitebrowser:latest": {
47
+ docker-mods
48
+ base {
49
+ fix-attr +\nlegacy cont-init
50
+ }
51
+ docker-mods -> base
52
+ legacy-services
53
+ custom services
54
+ init-services -> legacy-services
55
+ init-services -> custom services
56
+ custom services -> legacy-services
57
+ legacy-services -> ci-service-check
58
+ init-migrations -> init-adduser
59
+ init-kasmvnc-end -> init-config
60
+ init-os-end -> init-config
61
+ init-config -> init-config-end
62
+ init-crontab-config -> init-config-end
63
+ init-config -> init-crontab-config
64
+ init-mods-end -> init-custom-files
65
+ base -> init-envfile
66
+ init-os-end -> init-kasmvnc
67
+ init-nginx -> init-kasmvnc-config
68
+ init-video -> init-kasmvnc-end
69
+ base -> init-migrations
70
+ init-config-end -> init-mods
71
+ init-mods-package-install -> init-mods-end
72
+ init-mods -> init-mods-package-install
73
+ init-kasmvnc -> init-nginx
74
+ init-adduser -> init-os-end
75
+ init-envfile -> init-os-end
76
+ init-custom-files -> init-services
77
+ init-kasmvnc-config -> init-video
78
+ init-services -> svc-cron
79
+ svc-cron -> legacy-services
80
+ init-services -> svc-de
81
+ svc-nginx -> svc-de
82
+ svc-de -> legacy-services
83
+ init-services -> svc-docker
84
+ svc-de -> svc-docker
85
+ svc-docker -> legacy-services
86
+ init-services -> svc-kasmvnc
87
+ svc-pulseaudio -> svc-kasmvnc
88
+ svc-kasmvnc -> legacy-services
89
+ init-services -> svc-kclient
90
+ svc-kasmvnc -> svc-kclient
91
+ svc-kclient -> legacy-services
92
+ init-services -> svc-nginx
93
+ svc-kclient -> svc-nginx
94
+ svc-nginx -> legacy-services
95
+ init-services -> svc-pulseaudio
96
+ svc-pulseaudio -> legacy-services
97
+ }
98
+ Base Images: {
99
+ "baseimage-kasmvnc:alpine321" <- "baseimage-alpine:3.21"
100
+ }
101
+ "sqlitebrowser:latest" <- Base Images
50
102
# changelog
51
103
changelogs :
52
- - { date: "06.12.24:", desc: "Rebase to Alpine 3.21." }
53
- - { date: "23.05.24:", desc: "Rebase to Alpine 3.20." }
54
- - { date: "10.02.24:", desc: "Update Readme with new env vars and ingest proper PWA icon." }
55
- - { date: "02.01.24:", desc: "Rebase to Alpine 3.19." }
56
- - { date: "13.05.23:", desc: "Rebase to Alpine 3.18." }
57
- - { date: "18.03.23:", desc: "Rebase to KasmVNC base image." }
58
- - { date: "23.10.22:", desc: "Rebase to Alpine 3.16, migrate to s6v3." }
59
- - { date: "16.02.22:", desc: "Rebase to Alpine." }
60
- - { date: "20.01.21:", desc: "Remove Wireshark reference." }
61
- - { date: "29.07.20:", desc: "Initial release." }
104
+ - {date: "06.12.24:", desc: "Rebase to Alpine 3.21."}
105
+ - {date: "23.05.24:", desc: "Rebase to Alpine 3.20."}
106
+ - {date: "10.02.24:", desc: "Update Readme with new env vars and ingest proper PWA icon."}
107
+ - {date: "02.01.24:", desc: "Rebase to Alpine 3.19."}
108
+ - {date: "13.05.23:", desc: "Rebase to Alpine 3.18."}
109
+ - {date: "18.03.23:", desc: "Rebase to KasmVNC base image."}
110
+ - {date: "23.10.22:", desc: "Rebase to Alpine 3.16, migrate to s6v3."}
111
+ - {date: "16.02.22:", desc: "Rebase to Alpine."}
112
+ - {date: "20.01.21:", desc: "Remove Wireshark reference."}
113
+ - {date: "29.07.20:", desc: "Initial release."}
0 commit comments