Skip to content

Instantly share code, notes, and snippets.

@andre161292
andre161292 / Fix.md
Created June 5, 2023 11:26 — forked from reytech-dev/Fix.md
ZONE_CONFLICT: 'docker0' already bound to a zone
  1. Check if docker zone exists in firewall-cmd
$ firewall-cmd --get-active-zones
  1. If "docker" zone is available, change interface to docker0 (not persisted)
$ sudo firewall-cmd --zone=docker --change-interface=docker0
  1. If "docker" zone is available, change interface to docker0 (persisted, thanks rbjorklin)