кто то знает, как внутри докер контейнера (docker exec -ti /bin/bash) понять что ты находишься в шелл докер контейнера?
ps aux и увидешь что процессов с гулькин нос а ты рут
Никак
научить как?
ну например Docker creates a .dockerenv file at the root of the directory tree inside container. You can run this script to verify #!/bin/bash if [ -f /.dockerenv ]; then echo "I'm inside matrix ;("; else echo "I'm living in real world!"; fi
О, занятно :) Но в podman не работает
he most reliable way is to check /proc/1/cgroup. It will tell you the control groups of the init process, and when you are not in a container, that will be / for all hierarchies. When you are inside a container, you will see the name of the anchor point. With LXC/Docker containers, it will be something like /lxc/<containerid> or /docker/<containerid> respectively.
Обсуждают сегодня