Set the Network mode for the container:
- Empty: undefined, docker daemon defaults
- 'bridge': creates a new network stack for the container on the docker bridge
- 'none': no networking for this container
- 'container:<name | id>': reuses another container network stack
- 'host': use the host network stack inside the container. Note: the host mode gives the container full access
to local system services such as D-bus and is therefore considered insecure.