up docker v0.5.26

This commit is contained in:
SirPdboy 2023-05-30 13:08:25 +08:00 committed by GitHub
parent 93284551b6
commit b7c2b974b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 5 deletions

View File

@ -14,7 +14,7 @@ PKG_LICENSE:=AGPL-3.0
PKG_MAINTAINER:=lisaac <lisaac.cn@gmail.com> \
Florian Eckert <fe@dev.tdt.de>
PKG_VERSION:=v0.5.25
PKG_VERSION:=v0.5.26
include $(TOPDIR)/feeds/luci/luci.mk

View File

@ -10,7 +10,7 @@ module("luci.controller.dockerman",package.seeall)
function index()
entry({"admin", "docker"},
alias("admin", "docker", "config"),
firstchild(),
_("Docker"),
40).acl_depends = { "luci-app-dockerman" }

View File

@ -124,8 +124,10 @@ if not lost_state then
end
docker_info_table['8IndexServerAddress']._value = docker_info.body.IndexServerAddress
for i, v in ipairs(docker_info.body.RegistryConfig.Mirrors) do
docker_info_table['9RegistryMirrors']._value = docker_info_table['9RegistryMirrors']._value == "-" and v or (docker_info_table['9RegistryMirrors']._value .. ", " .. v)
if docker_info.body.RegistryConfig and docker_info.body.RegistryConfig.Mirrors then
for i, v in ipairs(docker_info.body.RegistryConfig.Mirrors) do
docker_info_table['9RegistryMirrors']._value = docker_info_table['9RegistryMirrors']._value == "-" and v or (docker_info_table['9RegistryMirrors']._value .. ", " .. v)
end
end
s.images_used = 0

View File

@ -8,7 +8,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.5.2-dev\n"
"X-Generator: Weblate 4.10-dev\n"
#: applications/luci-app-dockerman/luasrc/model/cbi/dockerman/newcontainer.lua:619
msgid "A list of kernel capabilities to add to the container"