Step 2: Create Docker Network¶
All Immich containers need to communicate with each other by container name. We create a dedicated Docker network for this.
Quicklink to the Unraid terminal (paste into your browser while logged into Unraid):
http://<your-unraid-ip>/Terminal
- Open the Unraid web interface
http://<your-unraid-ip> - Open the Unraid terminal (click the
icon in the top right corner of the navigation bar) - Run the following command to create the network:
docker network create immich_internal - When setting up each container below, select
immich_internalas the network in the template settings.
Why a custom network? Containers on the default bridge network communicate via host port mappings (NAT overhead). On a custom network, containers resolve each other by name directly — faster and more secure since database/cache ports don't need to be exposed to the host.