Immich v1.88.0 Breaking Changes (#1625)

* [Draft] Immich v1.88.0 Breaking Changes

Related to https://github.com/immich-app/immich/discussions/5086, Impending Breaking Changes

* Update docker-compose.yml

* Update config.json

* Fix Package Version
This commit is contained in:
DrMxrcy 2023-11-21 16:05:18 -05:00 committed by GitHub
parent fb39eb271e
commit 9b66968047
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 44 deletions

View File

@ -5,8 +5,8 @@
"exposable": true,
"port": 8128,
"id": "immich",
"tipi_version": 55,
"version": "1.87.0",
"tipi_version": 56,
"version": "1.88.2",
"categories": [
"data",
"photography"

View File

@ -1,25 +1,38 @@
version: "3.7"
services:
immich:
container_name: immich
image: altran1502/immich-proxy:v1.87.0
ports:
- ${APP_PORT}:8080
depends_on:
- immich-server
restart: unless-stopped
image: altran1502/immich-server:v1.88.2
command: ["start-server.sh"]
volumes:
- ${ROOT_FOLDER_HOST}/media/data/images/immich:/usr/src/app/upload
environment:
- IMMICH_WEB_URL=http://immich-web:3000
- IMMICH_SERVER_URL=http://immich-server:3001
# - IMMICH_MACHINE_LEARNING_URL="http://immich-machine-learning:3003"
- NODE_ENV=production
- DB_HOSTNAME=immich-db
- DB_USERNAME=tipi
- DB_PASSWORD=${DB_PASSWORD}
- ENABLE_MAPBOX=false
- DB_DATABASE_NAME=immich
- REDIS_HOSTNAME=immich-redis
- JWT_SECRET=${JWT_SECRET}
- TYPESENSE_HOST=immich-typesense
- TYPESENSE_API_KEY=${IMMICH_TYPESENSE_API_KEY}
depends_on:
- immich-redis
- immich-db
- immich-typesense
ports:
- ${APP_PORT}:3001
restart: unless-stopped
networks:
- tipi_main_network
labels:
# Main
traefik.enable: true
traefik.http.middlewares.immich-web-redirect.redirectscheme.scheme: https
traefik.http.services.immich.loadbalancer.server.port: 8080
traefik.http.services.immich.loadbalancer.server.port: 3001
# Web
traefik.http.routers.immich-insecure.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.immich-insecure.entrypoints: web
@ -41,31 +54,6 @@ services:
traefik.http.routers.immich-local.service: immich
traefik.http.routers.immich-local.tls: true
immich-server:
container_name: immich-server
image: altran1502/immich-server:v1.88.2
command: ["start-server.sh"]
volumes:
- ${ROOT_FOLDER_HOST}/media/data/images/immich:/usr/src/app/upload
environment:
- NODE_ENV=production
- DB_HOSTNAME=immich-db
- DB_USERNAME=tipi
- DB_PASSWORD=${DB_PASSWORD}
- ENABLE_MAPBOX=false
- DB_DATABASE_NAME=immich
- REDIS_HOSTNAME=immich-redis
- JWT_SECRET=${JWT_SECRET}
- TYPESENSE_HOST=immich-typesense
- TYPESENSE_API_KEY=${IMMICH_TYPESENSE_API_KEY}
depends_on:
- immich-redis
- immich-db
- immich-typesense
restart: unless-stopped
networks:
- tipi_main_network
immich-microservices:
container_name: immich-microservices
image: altran1502/immich-server:v1.88.2
@ -112,13 +100,6 @@ services:
networks:
- tipi_main_network
immich-web:
container_name: immich-web
image: altran1502/immich-web:v1.87.0
restart: unless-stopped
networks:
- tipi_main_network
immich-redis:
container_name: immich-redis
image: redis:6.2