Marvin
Marvin
IImmich
Created by Marvin on 5/3/2025 in #help-desk-support
OAuth + Authentik "Unsupported Operation" Error
@schuhbacca this actually solved it! Weird, I thought I had tried this... Thank you very much for the help!
15 replies
IImmich
Created by Marvin on 5/3/2025 in #help-desk-support
OAuth + Authentik "Unsupported Operation" Error
No description
15 replies
IImmich
Created by Marvin on 5/3/2025 in #help-desk-support
OAuth + Authentik "Unsupported Operation" Error
I am happy to provide additional information, if you let me know. I would really love to secure my immich instance with authentik, through your help!
15 replies
IImmich
Created by Marvin on 5/3/2025 in #help-desk-support
OAuth + Authentik "Unsupported Operation" Error
Immich server: v1.132.3 Authentik: v2025.4.0 Docker compose:
name: immich

services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:release
# extends:
# file: hwaccel.transcoding.yml
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
volumes:
- ~/externalDrive/immich/upload:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
env_file:
- server.env
environment:
DB_HOSTNAME: 10.0.0.2
DB_PORT: 5432
DB_USERNAME: immich
DB_DATABASE_NAME: immich
TZ: Europe/Berlin
ports:
- '2283:2283'
depends_on:
- redis
- immich-machine-learning
restart: unless-stopped
healthcheck:
disable: false

immich-machine-learning:
container_name: immich_machine_learning
# For hardware acceleration, add one of -[armnn, cuda, rocm, openvino, rknn] to the image tag.
# Example tag: ${IMMICH_VERSION:-release}-cuda
image: ghcr.io/immich-app/immich-machine-learning:release
# extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
# file: hwaccel.ml.yml
# service: cpu # set to one of [armnn, cuda, rocm, openvino, openvino-wsl, rknn] for accelerated inference - use the `-wsl` version for WSL2 where applicable
volumes:
- ~/containerData/immich_ml_cache:/cache
restart: unless-stopped
healthcheck:
disable: false

redis:
container_name: immich_redis
image: docker.io/valkey/valkey:8-bookworm@sha256:42cba146593a5ea9a622002c1b7cba5da7be248650cbb64ecb9c6c33d29794b1
volumes:
- ~/containerData/immich_redis:/data
healthcheck:
test: redis-cli ping || exit 1
restart: always
user: '1000'
name: immich

services:
immich-server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:release
# extends:
# file: hwaccel.transcoding.yml
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
volumes:
- ~/externalDrive/immich/upload:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
env_file:
- server.env
environment:
DB_HOSTNAME: 10.0.0.2
DB_PORT: 5432
DB_USERNAME: immich
DB_DATABASE_NAME: immich
TZ: Europe/Berlin
ports:
- '2283:2283'
depends_on:
- redis
- immich-machine-learning
restart: unless-stopped
healthcheck:
disable: false

immich-machine-learning:
container_name: immich_machine_learning
# For hardware acceleration, add one of -[armnn, cuda, rocm, openvino, rknn] to the image tag.
# Example tag: ${IMMICH_VERSION:-release}-cuda
image: ghcr.io/immich-app/immich-machine-learning:release
# extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
# file: hwaccel.ml.yml
# service: cpu # set to one of [armnn, cuda, rocm, openvino, openvino-wsl, rknn] for accelerated inference - use the `-wsl` version for WSL2 where applicable
volumes:
- ~/containerData/immich_ml_cache:/cache
restart: unless-stopped
healthcheck:
disable: false

redis:
container_name: immich_redis
image: docker.io/valkey/valkey:8-bookworm@sha256:42cba146593a5ea9a622002c1b7cba5da7be248650cbb64ecb9c6c33d29794b1
volumes:
- ~/containerData/immich_redis:/data
healthcheck:
test: redis-cli ping || exit 1
restart: always
user: '1000'
.env file contains DB password.
15 replies