luci-app-dockerman: add buildkit & experimental

Signed-off-by: sbwml <admin@cooluc.com>
This commit is contained in:
sbwml 2024-04-03 02:29:43 +08:00
parent 44673977c8
commit 88182aee81
2 changed files with 22 additions and 0 deletions

View File

@ -14,6 +14,16 @@ o = s:option(Flag, "remote_endpoint",
translate("Connect to remote endpoint")) translate("Connect to remote endpoint"))
o.rmempty = false o.rmempty = false
o = s:option(Flag, "buildkit",
translate("Enable BuildKit"),
translate("BuildKit is an improved backend to replace the legacy builder."))
o.rmempty = false
o = s:option(Flag, "experimental",
translate("Experimental Features"),
translate("Enable Docker experimental features."))
o.rmempty = false
o = s:option(Value, "remote_host", o = s:option(Value, "remote_host",
translate("Remote Host"), translate("Remote Host"),
translate("Host or IP Address for the connection to a remote docker instance")) translate("Host or IP Address for the connection to a remote docker instance"))

View File

@ -958,3 +958,15 @@ msgstr ""
#: applications/luci-app-dockerman/luasrc/model/cbi/dockerman/overview.lua:140 #: applications/luci-app-dockerman/luasrc/model/cbi/dockerman/overview.lua:140
msgid "Cannot connect to Docker daemon. Is the docker daemon running?" msgid "Cannot connect to Docker daemon. Is the docker daemon running?"
msgstr "无法连接到 Docker 守护进程Docker 是否已启动?" msgstr "无法连接到 Docker 守护进程Docker 是否已启动?"
msgid "Enable BuildKit"
msgstr "启用 BuildKit"
msgid "BuildKit is an improved backend to replace the legacy builder."
msgstr "BuildKit 是一个改进的后端,用于替代传统的构建器"
msgid "Experimental Features"
msgstr "实验性功能"
msgid "Enable Docker experimental features."
msgstr "启用 Docker 实验性功能experimental"