fix: db error

This commit is contained in:
= 2025-09-21 09:51:28 +02:00
parent aa747ba3e7
commit a7ffcfdea8
3 changed files with 3 additions and 2 deletions

View file

@ -6,4 +6,4 @@ container_immich_domain: immich.heyer.systems
container_immich_tz: Europe/Berlin container_immich_tz: Europe/Berlin
container_immich_db_user: postgres container_immich_db_user: postgres
container_immich_db_password: your_strong_password_here container_immich_db_password: your_strong_password_here
container_immich_db_name: immmich container_immich_db_name: immich

View file

@ -8,6 +8,7 @@
- "library" - "library"
- "postgres" - "postgres"
become: false become: false
ignore_errors: yes
- name: Deploy Docker Compose and .env files - name: Deploy Docker Compose and .env files
ansible.builtin.template: ansible.builtin.template:

View file

@ -1,6 +1,6 @@
IMMICH_VERSION={{ container_immich_version }} IMMICH_VERSION={{ container_immich_version }}
IMMICH_DOMAIN={{ container_immich_domain }} IMMICH_DOMAIN={{ container_immich_domain }}
TZ={{ container_immich_tz }} TZ={{ container_immich_tz }}
DB_USERNAME={{ container_immich_db_username }} DB_USERNAME={{ container_immich_db_user }}
DB_PASSWORD={{ container_immich_db_password }} DB_PASSWORD={{ container_immich_db_password }}
DB_DATABASE_NAME={{ container_immich_db_name }} DB_DATABASE_NAME={{ container_immich_db_name }}