mirror of
https://github.com/immich-app/immich.git
synced 2025-02-11 01:18:24 -05:00
docs: bulk upload: Fix "upload directory" instructions (#3942)
The command examples are titled "Upload current directory" and "Upload target directory", however the presented commands skip the `/import` directory, if the `--recursive` flag is not explicitly specified.
This commit is contained in:
parent
4e5bf7ae2e
commit
67ac686704
1 changed files with 4 additions and 4 deletions
|
@ -68,16 +68,16 @@ Be aware that as this runs inside a container, you need to mount the folder from
|
||||||
|
|
||||||
```bash title="Upload current directory"
|
```bash title="Upload current directory"
|
||||||
cd /DIRECTORY/WITH/IMAGES
|
cd /DIRECTORY/WITH/IMAGES
|
||||||
docker run -it --rm -v "$(pwd):/import" ghcr.io/immich-app/immich-cli:latest upload --key HFEJ38DNSDUEG --server http://192.168.1.216:2283/api
|
docker run -it --rm -v "$(pwd):/import" ghcr.io/immich-app/immich-cli:latest upload --recursive --key HFEJ38DNSDUEG --server http://192.168.1.216:2283/api
|
||||||
```
|
```
|
||||||
|
|
||||||
```bash title="Upload target directory"
|
```bash title="Upload target directory"
|
||||||
docker run -it --rm -v "/DIRECTORY/WITH/IMAGES:/import" ghcr.io/immich-app/immich-cli:latest upload --key HFEJ38DNSDUEG --server http://192.168.1.216:2283/api
|
docker run -it --rm -v "/DIRECTORY/WITH/IMAGES:/import" ghcr.io/immich-app/immich-cli:latest upload --recursive --key HFEJ38DNSDUEG --server http://192.168.1.216:2283/api
|
||||||
```
|
```
|
||||||
|
|
||||||
```bash title="Create an alias"
|
```bash title="Create an alias"
|
||||||
alias immich='docker run -it --rm -v "$(pwd):/import" ghcr.io/immich-app/immich-cli:latest'
|
alias immich='docker run -it --rm -v "$(pwd):/import" ghcr.io/immich-app/immich-cli:latest'
|
||||||
immich upload --key HFEJ38DNSDUEG --server http://192.168.1.216:2283/api
|
immich upload --recursive --key HFEJ38DNSDUEG --server http://192.168.1.216:2283/api
|
||||||
```
|
```
|
||||||
|
|
||||||
:::tip Internal networking
|
:::tip Internal networking
|
||||||
|
@ -88,7 +88,7 @@ If you are running the CLI container on the same machine as your Immich server,
|
||||||
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"
|
```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 --recursive --key HFEJ38DNSDUEG --server http://immich-server:3001
|
||||||
```
|
```
|
||||||
|
|
||||||
:::
|
:::
|
||||||
|
|
Loading…
Add table
Reference in a new issue