Hello, I have built a homemade ZimaOS server with an intel 4690 and originally a RTX 2070.
I’ve swapped my 2070 for an Arc a310, however doing that seems to have caused Immich facial recognition to stop working.
I haven’t done any config just swapped the card. I’ve read the setup page from the Immich webpage but I am still new to linux and would like some step by step instructions for doing it on a ZimaOS ……Thanks in advance.
-Kevin
-intel-gpu-top works from the server terminal but not in the Immich docker one
-The GPU widget from the Zimaos home page has disappeared
-GPU transcoding is working in Jellyfin
Here is a segment from the immich.yaml :
name: immich
services:
database:
cpu_shares: 90
command:
container_name: immich-postgres
deploy:
resources:
limits:
memory: 33583419392
reservations:
devices:
environment:
- POSTGRES_DB=immich
- POSTGRES_INITDB_ARGS=–data-checksums
- POSTGRES_PASSWORD=postgres
- POSTGRES_USER=postgres
hostname: immich-postgres
image: Package postgres · GitHub
labels:
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Immich/icon.png
restart: unless-stopped
shm_size: “134217728”
volumes: - type: bind
source: /DATA/AppData/immich/pgdata
target: /var/lib/postgresql/data
bind:
create_host_path: true
ports:
devices:
cap_add:
networks: - immich
privileged: false
immich-machine-learning:
cpu_shares: 90
command:
container_name: immich-machine-learning
deploy:
resources:
limits:
memory: 33583419392
reservations:
devices: - capabilities:
- gpu
device_ids: - “0”
environment: - DB_DATABASE_NAME=immich
- DB_PASSWORD=postgres
- DB_USERNAME=postgres
hostname: immich-machine-learning
healthcheck: {}
image: ghcr.io/immich-app/immich-machine-learning:v2.1.0
labels:
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Immich/icon.png
restart: unless-stopped
volumes: - type: bind
source: /DATA/AppData/immich/model-cache
target: /cache
bind:
create_host_path: true
ports:
devices:
cap_add:
networks: - immich
privileged: false
immich-server:
cpu_shares: 90
command:
container_name: immich-server
depends_on:
database:
condition: service_started
required: true
redis:
condition: service_started
required: true
deploy:
resources:
limits:
memory: 33583419392
reservations:
memory: “1073741824”
devices:
environment: - DB_DATABASE_NAME=immich
- DB_PASSWORD=postgres
- DB_USERNAME=postgres
hostname: immich-server
healthcheck: {}
image: ghcr.io/immich-app/immich-server:v2.1.0
labels:
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS