Fix Immich breaking Changes (#1810)
* Fix Immich breaking Changes * Update config.json * Fix Version Mismatch * Update to v1.91.3
This commit is contained in:
parent
d3627b6b03
commit
1af7051353
|
@ -5,7 +5,7 @@
|
||||||
"exposable": true,
|
"exposable": true,
|
||||||
"port": 8128,
|
"port": 8128,
|
||||||
"id": "immich",
|
"id": "immich",
|
||||||
"tipi_version": 64,
|
"tipi_version": 65,
|
||||||
"version": "1.91.3",
|
"version": "1.91.3",
|
||||||
"categories": [
|
"categories": [
|
||||||
"data",
|
"data",
|
||||||
|
|
|
@ -17,12 +17,9 @@ services:
|
||||||
- DB_DATABASE_NAME=immich
|
- DB_DATABASE_NAME=immich
|
||||||
- REDIS_HOSTNAME=immich-redis
|
- REDIS_HOSTNAME=immich-redis
|
||||||
- JWT_SECRET=${JWT_SECRET}
|
- JWT_SECRET=${JWT_SECRET}
|
||||||
- TYPESENSE_HOST=immich-typesense
|
|
||||||
- TYPESENSE_API_KEY=${IMMICH_TYPESENSE_API_KEY}
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- immich-redis
|
- immich-redis
|
||||||
- immich-db
|
- immich-db
|
||||||
- immich-typesense
|
|
||||||
ports:
|
ports:
|
||||||
- ${APP_PORT}:3001
|
- ${APP_PORT}:3001
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
@ -69,12 +66,9 @@ services:
|
||||||
- REDIS_HOSTNAME=immich-redis
|
- REDIS_HOSTNAME=immich-redis
|
||||||
- JWT_SECRET=${JWT_SECRET}
|
- JWT_SECRET=${JWT_SECRET}
|
||||||
- ENABLE_MAPBOX=false
|
- ENABLE_MAPBOX=false
|
||||||
- TYPESENSE_HOST=immich-typesense
|
|
||||||
- TYPESENSE_API_KEY=${IMMICH_TYPESENSE_API_KEY}
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- immich-redis
|
- immich-redis
|
||||||
- immich-db
|
- immich-db
|
||||||
- immich-typesense
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
- tipi_main_network
|
- tipi_main_network
|
||||||
|
@ -92,8 +86,6 @@ services:
|
||||||
- DB_PASSWORD=${DB_PASSWORD}
|
- DB_PASSWORD=${DB_PASSWORD}
|
||||||
- DB_NAME=immich
|
- DB_NAME=immich
|
||||||
- DB_DATABASE_NAME=immich
|
- DB_DATABASE_NAME=immich
|
||||||
- TYPESENSE_HOST=immich-typesense
|
|
||||||
- TYPESENSE_API_KEY=${IMMICH_TYPESENSE_API_KEY}
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- immich-db
|
- immich-db
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
@ -109,7 +101,7 @@ services:
|
||||||
|
|
||||||
immich-db:
|
immich-db:
|
||||||
container_name: immich-db
|
container_name: immich-db
|
||||||
image: postgres:14
|
image: tensorchord/pgvecto-rs:pg14-v0.1.11
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
||||||
POSTGRES_USER: tipi
|
POSTGRES_USER: tipi
|
||||||
|
@ -120,17 +112,3 @@ services:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
- tipi_main_network
|
- tipi_main_network
|
||||||
|
|
||||||
immich-typesense:
|
|
||||||
container_name: immich-typesense
|
|
||||||
image: typesense/typesense:0.25.1
|
|
||||||
environment:
|
|
||||||
- TYPESENSE_API_KEY=${IMMICH_TYPESENSE_API_KEY}
|
|
||||||
- TYPESENSE_DATA_DIR=/data
|
|
||||||
logging:
|
|
||||||
driver: none
|
|
||||||
volumes:
|
|
||||||
- ${APP_DATA_DIR}/data/typesense:/data
|
|
||||||
restart: always
|
|
||||||
networks:
|
|
||||||
- tipi_main_network
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user