watching docker events

This commit is contained in:
Chai Feng 2018-10-03 09:18:28 +08:00
parent bd991a0367
commit 5f8841f2ac
No known key found for this signature in database
GPG Key ID: 2DCD9A24E523FFD2

View File

@ -13,6 +13,16 @@ case "$1" in
name="${label#ufw.public.}"
echo "${name}=$port"
done
docker events --format '{{.Time}} {{.Status}} {{.Actor.Attributes.name}}' --filter 'scope=local' --filter 'type=container' |
while read time status name; do
echo "$time $status $name" >&2
declare -a agent_opts=(run --rm --cap-add NET_ADMIN --network host -v /etc/ufw:/etc/ufw "${ufw_docker_agent_image}")
[[ "status" = start ]] && agent_opts+=(allow "$name")
[[ "status" = stop ]] && agent_opts+=(delete allow "$name")
echo docker "${agent_opts[@]}"
done
sleep 60; exit 1
;;
delete|allow)