Replies: 1 comment 1 reply
-
@fredflev Actually, it fully depends on docker_container_module Would you mind submitting a PR to fix it? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've just realised that setting
network_mode: default
inmolecule.yml
is not accepted anymore since the introduction of JSON schema validation.Looking at the schema, only the following options are now available
"bridge", "host", "none"
https://github.com/ansible-community/molecule/blob/54bade8f8749dee0b04d8073d8f8624473dec7c6/src/molecule/data/molecule.json#L225-L241
I was wondering if that was by design or by omission.
For now I ended up explicitly using
network: bridge
as per https://docs.docker.com/network/#network-driversBeta Was this translation helpful? Give feedback.
All reactions