mirror of
https://github.com/containers/podman.git
synced 2025-12-08 06:39:05 +08:00
* Add BaseHostsFile to container configuration * Do not copy /etc/hosts file from host when creating a container using Docker API Signed-off-by: Gavin Lam <gavin.oss@tutamail.com>
6 lines
95 B
Bash
6 lines
95 B
Bash
if ! is_rootless; then
|
|
umount /etc/hosts
|
|
else
|
|
$PODMAN_BIN unshare umount /etc/hosts
|
|
fi
|