From c3e328ab2fa43ff26d1861c4e437c5742060eb0a Mon Sep 17 00:00:00 2001 From: Jason Anderson <94086829+JasonMAnderson@users.noreply.github.com> Date: Wed, 12 Feb 2025 16:08:23 -0900 Subject: [PATCH] Update docker-compose.mdx This is an important step for Synology NAS users that have a firewall with a "Deny All" rule at the bottom. Since the containers are set-up in bridge mode for networking, the IP address of the Immich container needs to be forwarded along with port 2283. --- docs/docs/install/docker-compose.mdx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/docs/install/docker-compose.mdx b/docs/docs/install/docker-compose.mdx index 3593cf19ee56a..fe982dddc08e6 100644 --- a/docs/docs/install/docker-compose.mdx +++ b/docs/docs/install/docker-compose.mdx @@ -53,6 +53,9 @@ docker compose up -d :::info Docker version If you get an error such as `unknown shorthand flag: 'd' in -d` or `open : permission denied`, you are probably running the wrong Docker version. (This happens, for example, with the docker.io package in Ubuntu 22.04.3 LTS.) You can correct the problem by following the complete [Docker Engine install](https://docs.docker.com/engine/install/) procedure for your distribution, crucially the "Uninstall old versions" and "Install using the apt/rpm repository" sections. These replace the distro's Docker packages with Docker's official ones. +:::info Synology NAS firewall +In order to access the Immich server, you will need to create two firewall rules - one for port 2283 and another one for the local IP address of the Immich Docker container. + Note that the correct command really is `docker compose`, not `docker-compose`. If you try the latter on vanilla Ubuntu 22.04, it will fail in a different way: ```