Skip to content

Instantly share code, notes, and snippets.

View DmitryRendov's full-sized avatar

Dmitry Rendov DmitryRendov

  • EPAM
  • Gdańsk
  • 10:16 (UTC +02:00)
View GitHub Profile
@reytech-dev
reytech-dev / Fix.md
Last active March 20, 2024 10:19
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)