diff options
| author | Juan Cruz Viotti <[email protected]> | 2020-07-07 11:09:20 +0100 |
|---|---|---|
| committer | Juan Cruz Viotti <[email protected]> | 2020-07-07 11:14:47 +0100 |
| commit | 2c6351724b6cab5f584a9dd9dbac86b6ca4c6fab (patch) | |
| tree | 9db2dc05697d3e45befbb9e0409062a9b8a76d10 /README.md | |
| parent | Update CREDITS.md (diff) | |
| download | docker-osx-2c6351724b6cab5f584a9dd9dbac86b6ca4c6fab.tar.xz docker-osx-2c6351724b6cab5f584a9dd9dbac86b6ca4c6fab.zip | |
Document how to make firewalld work on Fedora with bridged networking
`firewalld` doesn't allow DNS requests (this is the case that bit me,
but there might be more) on `docker0` unless the interface is added to
the trusted zone.
See: https://github.com/docker/for-linux/issues/955
Fixes: https://github.com/sickcodes/Docker-OSX/issues/56
Signed-off-by: Juan Cruz Viotti <[email protected]>
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -160,6 +160,15 @@ sudo nohup dockerd & ``` +If you have no internet connectivity from the VM, you are using bridge +networking, and you are running Fedora: + +``` +# Set the docker0 bridge to the trusted zone +sudo firewall-cmd --permanent --zone=trusted --add-interface=docker0 +sudo firewall-cmd --reload +``` + # Backup the disk your image will be stored in: |