You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- {env_var: "SUDO_PASSWORD_HASH", env_value: "", desc: "Optionally set sudo password via hash (takes priority over `SUDO_PASSWORD` var). Format is `$type$salt$hashed`."}
37
36
- {env_var: "PROXY_DOMAIN", env_value: "code-server.my.domain", desc: "If this optional variable is set, this domain will be proxied for subdomain proxying. See [Documentation](https://github.com/coder/code-server/blob/main/docs/guide.md#using-a-subdomain)"}
38
37
- {env_var: "DEFAULT_WORKSPACE", env_value: "/config/workspace", desc: "If this optional variable is set, code-server will open this directory by default"}
39
-
40
38
# application setup block
41
39
app_setup_block_enabled: true
42
40
app_setup_block: |
@@ -52,6 +50,49 @@ app_setup_block: |
52
50
### Hashed code-server password
53
51
54
52
How to create the [hashed password](https://github.com/cdr/code-server/blob/master/docs/FAQ.md#can-i-store-my-password-hashed).
53
+
# init diagram
54
+
init_diagram: |
55
+
"code-server:latest": {
56
+
docker-mods
57
+
base {
58
+
fix-attr +\nlegacy cont-init
59
+
}
60
+
docker-mods -> base
61
+
legacy-services
62
+
custom services
63
+
init-services -> legacy-services
64
+
init-services -> custom services
65
+
custom services -> legacy-services
66
+
legacy-services -> ci-service-check
67
+
init-migrations -> init-adduser
68
+
init-config -> init-code-server
69
+
init-os-end -> init-config
70
+
init-code-server -> init-config-end
71
+
init-config -> init-config-end
72
+
init-os-end -> init-crontab-config
73
+
init-mods-end -> init-custom-files
74
+
base -> init-envfile
75
+
base -> init-migrations
76
+
base -> init-mods
77
+
init-config-end -> init-mods
78
+
init-mods -> init-mods-end
79
+
init-mods-package-install -> init-mods-end
80
+
init-mods -> init-mods-package-install
81
+
base -> init-os-end
82
+
init-adduser -> init-os-end
83
+
init-envfile -> init-os-end
84
+
init-migrations -> init-os-end
85
+
init-custom-files -> init-services
86
+
init-mods-end -> init-services
87
+
init-services -> svc-code-server
88
+
svc-code-server -> legacy-services
89
+
init-services -> svc-cron
90
+
svc-cron -> legacy-services
91
+
}
92
+
Base Images: {
93
+
"baseimage-ubuntu:noble"
94
+
}
95
+
"code-server:latest" <- Base Images
55
96
# changelog
56
97
changelogs:
57
98
- {date: "13.10.24:", desc: "Only chown config folder when change to ownership or new install is detected."}
0 commit comments