mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-06 00:45:43 +00: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>
5 lines
167 B
Bash
5 lines
167 B
Bash
if ! is_rootless; then
|
|
mount --bind $TEST_ROOTDIR/etc_hosts/hosts /etc/hosts
|
|
else
|
|
$PODMAN_BIN unshare mount --bind $TEST_ROOTDIR/etc_hosts/hosts /etc/hosts
|
|
fi
|