set up immich to work with nvidia gpu

This commit is contained in:
Jef Roosens 2026-04-20 21:56:25 +02:00
parent 4c54a80122
commit fcd36a1035
Signed by: Jef Roosens
GPG key ID: 21FD3D77D56BAF49
5 changed files with 130 additions and 34 deletions

View file

@ -1,8 +1,19 @@
---
- name: 'restart immich'
- name: restart immich
ansible.builtin.systemd_service:
name: 'immich-server'
state: 'restarted'
scope: 'user'
name: immich-app
state: restarted
scope: user
daemon_reload: true
- name: restart immich-ml
ansible.builtin.systemd_service:
name: immich-ml
state: restarted
daemon_reload: true
become: true
- name: reload caddy
ansible.builtin.systemd_service:
name: caddy
state: reloaded