mirror of
https://github.com/nginx-proxy/docker-letsencrypt-nginx-proxy-companion
synced 2024-11-22 20:42:04 +01:00
Update functions.sh
With cgroup v2, CID can be read from /proc/self/mountinfo
This commit is contained in:
parent
013005aca1
commit
d110a065b2
@ -204,6 +204,10 @@ function get_self_cid {
|
||||
if [[ ( ${#self_cid} != 64 ) && ( -f /proc/self/cgroup ) ]]; then
|
||||
self_cid="$(grep -Eo -m 1 '[[:alnum:]]{64}' /proc/self/cgroup)"
|
||||
fi
|
||||
# cgroups v2
|
||||
if [[ ( ${#self_cid} != 64 ) && ( -f /proc/self/mountinfo ) ]]; then
|
||||
self_cid="$(grep '/userdata/hostname' /proc/self/mountinfo | grep -Eo '[[:alnum:]]{64}')"
|
||||
fi
|
||||
if [[ ( ${#self_cid} != 64 ) ]]; then
|
||||
self_cid="$(docker_api "/containers/$(hostname)/json" | jq -r '.Id')"
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user