My compose file: name: immich services: immich-server: container_name: immich_server image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} volumes: - ${UPLOAD_LOCATION}:/usr/src/app/upload - /etc/localtime:/etc/localtime:ro - ${EXTERNAL_PATH}:/usr/src/app/external/user_1:ro - ${EXTERNAL_PATH_Fatma}:/usr/src/app/external/user_2:ro env_file: - .env extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/hardware-transcoding file: hwaccel.transcoding.yml service: quicksync # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding ports: - 2283:2283 security_opt: - "label=disable" depends_on: - redis - database restart: always immich-machine-learning: container_name: immich_machine_learning image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}-openvino volumes: - model-cache:/cache env_file: - .env restart: always redis: container_name: immich_redis image: registry.hub.docker.com/library/redis:6.2-alpine@sha256:51d6c56749a4243096327e3fb964a48ed92254357108449cb6e23999c37773c5 restart: always database: container_name: immich_postgres image: ghcr.io/immich-app/postgres:14-vectorchord0.3.0-pgvectors0.2.0 environment: POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_USER: ${DB_USERNAME} POSTGRES_DB: ${DB_DATABASE_NAME} POSTGRES_INITDB_ARGS: '--data-checksums' # Uncomment the DB_STORAGE_TYPE: 'HDD' var if your database isn't stored on SSDs # DB_STORAGE_TYPE: 'HDD' volumes: - ${DB_DATA_LOCATION}:/var/lib/postgresql/data restart: always immich-folder-album-creator: container_name: immich_folder_album_creator image: salvoxia/immich-folder-album-creator:latest restart: unless-stopped environment: API_URL: http://192.168.1.5:2283/api API_KEY: key ROOT_PATH: /usr/src/app/external/user_1 CRON_EXPRESSION: "*/5 * * * *" TZ: Europe/Berlin ALBUM_LEVELS: 10 ALBUM_SEPARATOR: " - " SYNC_MODE: "2" # RUN_IMMEDIATELY: true # MODE: CLEANUP # DELETE_CONFIRM: true immich-folder-album-creator_f: container_name: immich_folder_album_creator_f image: salvoxia/immich-folder-album-creator:latest restart: unless-stopped environment: API_URL: http://192.168.1.5:2283/api API_KEY: key ROOT_PATH: /usr/src/app/external/user_2 CRON_EXPRESSION: "*/5 * * * *" TZ: Europe/Berlin ALBUM_LEVELS: 10 ALBUM_SEPARATOR: " - " SYNC_MODE: "2" # RUN_IMMEDIATELY: true # MODE: CLEANUP # DELETE_CONFIRM: true volumes: pgdata: model-cache: