Merge pull request #12556 from TDT-AG/pr/20200619-docker-ce
docker-ce: add uci support
This commit is contained in:
commit
04802c4927
|
@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
|
|||
|
||||
PKG_NAME:=docker-ce
|
||||
PKG_VERSION:=19.03.12
|
||||
PKG_RELEASE:=1
|
||||
PKG_RELEASE:=2
|
||||
PKG_LICENSE:=Apache-2.0
|
||||
PKG_LICENSE_FILES:=components/cli/LICENSE components/engine/LICENSE
|
||||
|
||||
|
@ -49,6 +49,10 @@ define Package/docker-ce
|
|||
MENU:=1
|
||||
endef
|
||||
|
||||
define Package/docker-ce/conffiles
|
||||
/etc/config/dockerd
|
||||
endef
|
||||
|
||||
define Package/docker-ce/description
|
||||
Docker Engine is used by millions enables containerized applications
|
||||
to run anywhere consistently on any infrastructure.
|
||||
|
@ -120,8 +124,8 @@ define Package/docker-ce/install
|
|||
$(INSTALL_DIR) $(1)/etc/init.d
|
||||
$(INSTALL_BIN) ./files/dockerd.init $(1)/etc/init.d/dockerd
|
||||
|
||||
$(INSTALL_DIR) $(1)/etc/docker
|
||||
$(INSTALL_CONF) ./files/daemon.json $(1)/etc/docker/
|
||||
$(INSTALL_DIR) $(1)/etc/config
|
||||
$(INSTALL_CONF) ./files/etc/config/dockerd $(1)/etc/config/dockerd
|
||||
|
||||
# Must be after systcl 11-br-netfilter.conf from kmod-br-netfilter
|
||||
$(INSTALL_DIR) $(1)/etc/sysctl.d
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
{
|
||||
"data-root": "/opt/docker/",
|
||||
"log-level": "warn"
|
||||
}
|
|
@ -3,12 +3,91 @@
|
|||
USE_PROCD=1
|
||||
START=25
|
||||
|
||||
DOCKERD_CONF="/tmp/dockerd/daemon.json"
|
||||
|
||||
json_add_array_string() {
|
||||
json_add_string "" "$1"
|
||||
}
|
||||
|
||||
process_config() {
|
||||
local alt_config_file data_root log_level
|
||||
|
||||
rm -f "$DOCKERD_CONF"
|
||||
|
||||
[ -f /etc/config/dockerd ] || {
|
||||
# Use the daemon default configuration
|
||||
DOCKERD_CONF=""
|
||||
return 0
|
||||
}
|
||||
|
||||
config_load 'dockerd'
|
||||
|
||||
config_get alt_config_file globals alt_config_file
|
||||
[ -n "$alt_config_file" ] && [ -f "$alt_config_file" ] && {
|
||||
ln -s "$alt_config_file" "$DOCKERD_CONF"
|
||||
return 0
|
||||
}
|
||||
|
||||
config_get data_root globals data_root "/opt/docker/"
|
||||
config_get log_level globals log_level "warn"
|
||||
|
||||
. /usr/share/libubox/jshn.sh
|
||||
json_init
|
||||
json_add_string "data-root" "$data_root"
|
||||
json_add_string "log-level" "$log_level"
|
||||
json_add_array "registry-mirrors"
|
||||
config_list_foreach globals registry_mirror json_add_array_string
|
||||
json_close_array
|
||||
|
||||
mkdir -p /tmp/dockerd
|
||||
json_dump > "$DOCKERD_CONF"
|
||||
}
|
||||
|
||||
start_service() {
|
||||
local nofile=$(cat /proc/sys/fs/nr_open)
|
||||
|
||||
process_config
|
||||
|
||||
procd_open_instance
|
||||
procd_set_param stderr 1
|
||||
procd_set_param command /usr/bin/dockerd
|
||||
if [ -z "$DOCKERD_CONF" ]; then
|
||||
procd_set_param command /usr/bin/dockerd
|
||||
else
|
||||
procd_set_param command /usr/bin/dockerd --config-file="$DOCKERD_CONF"
|
||||
fi
|
||||
procd_set_param limits nofile="${nofile} ${nofile}"
|
||||
procd_close_instance
|
||||
}
|
||||
|
||||
ip4tables_remove_nat() {
|
||||
iptables -t nat -D OUTPUT ! -d 127.0.0.0/8 -m addrtype --dst-type LOCAL -j DOCKER
|
||||
iptables -t nat -D PREROUTING -m addrtype --dst-type LOCAL -j DOCKER
|
||||
|
||||
iptables -t nat -F DOCKER
|
||||
iptables -t nat -X DOCKER
|
||||
}
|
||||
|
||||
ip4tables_remove_filter() {
|
||||
iptables -t filter -D FORWARD -j DOCKER-USER
|
||||
iptables -t filter -D FORWARD -j DOCKER-ISOLATION-STAGE-1
|
||||
iptables -t filter -D FORWARD -o docker0 -j DOCKER
|
||||
|
||||
iptables -t filter -F DOCKER
|
||||
iptables -t filter -F DOCKER-ISOLATION-STAGE-1
|
||||
iptables -t filter -F DOCKER-ISOLATION-STAGE-2
|
||||
iptables -t filter -F DOCKER-USER
|
||||
|
||||
iptables -t filter -X DOCKER
|
||||
iptables -t filter -X DOCKER-ISOLATION-STAGE-1
|
||||
iptables -t filter -X DOCKER-ISOLATION-STAGE-2
|
||||
iptables -t filter -X DOCKER-USER
|
||||
}
|
||||
|
||||
ip4tables_remove() {
|
||||
ip4tables_remove_nat
|
||||
ip4tables_remove_filter
|
||||
}
|
||||
|
||||
stop_service() {
|
||||
ip4tables_remove
|
||||
}
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
|
||||
config globals 'globals'
|
||||
# option alt_config_file "/etc/docker/daemon.json"
|
||||
option data_root "/opt/docker/"
|
||||
option log_level "warn"
|
||||
# list registry_mirror "https://<my-docker-mirror-host>"
|
||||
# list registry_mirror "https://hub.docker.com"
|
Loading…
Reference in New Issue