From 747afa0ceedad17e3a56096b2ce5e2f4a3cbb0ba Mon Sep 17 00:00:00 2001 From: Evan <35814742+evanphilip@users.noreply.github.com> Date: Fri, 9 Jun 2023 16:24:13 +0200 Subject: [PATCH] Fix trailing slash in server address while using docker (#2704) --- docs/docs/features/bulk-upload.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/features/bulk-upload.md b/docs/docs/features/bulk-upload.md index f92055357b..2cb320216d 100644 --- a/docs/docs/features/bulk-upload.md +++ b/docs/docs/features/bulk-upload.md @@ -76,10 +76,10 @@ If you are running the CLI container on the same machine as your Immich server, 1. Find the internal Docker network used by Immich via `docker network ls`. 2. Adapt the above command to pass the `--network ` argument to `docker run`, substituting `` with the result from step 1. -3. Use `--server http://immich-server:3001/` for the upload command instead of the external address. +3. Use `--server http://immich-server:3001` for the upload command instead of the external address. ```bash title="Upload to internal address" -docker run --network immich_default -it --rm -v "$(pwd):/import" ghcr.io/immich-app/immich-cli:latest upload --key HFEJ38DNSDUEG --server http://immich-server:3001/ +docker run --network immich_default -it --rm -v "$(pwd):/import" ghcr.io/immich-app/immich-cli:latest upload --key HFEJ38DNSDUEG --server http://immich-server:3001 ``` :::