Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents
maxLevel3

Pre-Requisits

Disable Systemd-Resolved

In order to free up port 53, you may need to disable systemd-resolved on the docker host machine.

sudo su

systemctl stop systemd-resolved
systemctl disable systemd-resolved

Update resolv.conf

vi /etc/resolv.conf

Code Block
nameserver 127.0.0.1
options edns0
search home

Install Docker and Docker-Compose

...