Hi, I am new to docker and immich and want to add the file path "L:\immPhoto" as a read only external library.
Following are my configuration files:
docker-compose.yml
services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
command: [ "start.sh", "immich" ]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- L:\immPhoto:/L/immPhoto:ro
- /etc/localtime:/etc/localtime:ro
env_file:
- .env
ports:
- 2283:3001
depends_on:
- redis
- database
restart: always
immich-microservices:
container_name: immich_microservices
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
# extends:
# file: hwaccel.yml
# service: hwaccel
command: [ "start.sh", "microservices" ]
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- L:\immPhoto:/L/immPhoto:ro
- /etc/localtime:/etc/localtime:ro
env_file:
- .env
I did the following in Web Interface:
Settings -> Libraries -> Create External Library -> Import Path "L:\immPhoto"
I am getting the following error when i press Scan all Libraries: "WARN [LibraryService] User has no external path set, cannot refresh library" Thanks ๐
.