Skip to main content

Docker

Install using the official Docker guide (NOT via Snap).

Network

The exist network is automatically created when running docker compose up. To create it manually:

docker network create \
--driver overlay \
--attachable \
--opt encrypted \
exist

Privileged Port Error

To allow binding to ports like 80 without root, add to /etc/sysctl.conf:

net.ipv4.ip_unprivileged_port_start=80

Apply immediately:

sudo sysctl -w net.ipv4.ip_unprivileged_port_start=80