fix: update Dockerfile to include docker-cli and change ansible container network to jms_net

This commit is contained in:
wangruidong
2026-06-12 16:12:48 +08:00
parent 21dec48d06
commit 724c40776b
2 changed files with 3 additions and 2 deletions

View File

@@ -36,7 +36,8 @@ ARG TOOLS=" \
postgresql-client \
openssh-client \
sshpass \
bubblewrap"
bubblewrap \
docker-cli"
ARG APT_MIRROR=http://deb.debian.org

View File

@@ -27,7 +27,7 @@ def docker_isolation_kwargs():
'process_isolation': True,
'process_isolation_executable': 'docker',
'container_image': ANSIBLE_EE_IMAGE,
'container_options': ['--network=host'],
'container_options': ['--network=jms_net'],
}