jacobthegr8
jacobthegr8
IImmich
Created by jacobthegr8 on 11/19/2023 in #help-desk-support
How do I read every subfolder and all content from /mnt?
Below is my docker-compose.yml that i changed version: "3.8" name: immich 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 - /etc/localtime:/etc/localtime:ro - /mnt:/mnt:ro env_file: - .env depends_on: - redis - database - typesense 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 - /etc/localtime:/etc/localtime:ro - /mnt:/mnt:ro I dont know how to restart the container to accept these containers. Also, I clicked in the web ui, Create External Library and gave it a path to /mnt and under admininstration, i added /mnt to external path. What do I need to do now? I am trying to set it up to scan my external ssd.
59 replies