1
0
Fork 0

feat:更新immich到1.118.2

This commit is contained in:
okxlin 2024-10-19 01:30:16 +08:00
parent 6f8f1048c0
commit 6e0b07f82f
4 changed files with 36 additions and 6 deletions

View File

@ -4,7 +4,7 @@ services:
restart: always
networks:
- 1panel-network
image: altran1502/immich-server:v1.117.0
image: altran1502/immich-server:v1.118.2
volumes:
- ${UPLOAD_LOCATION}:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
@ -15,7 +15,7 @@ services:
- DB_DATABASE_NAME=${PANEL_DB_NAME}
- REDIS_HOSTNAME=${CONTAINER_NAME}-redis
ports:
- ${PANEL_APP_PORT_HTTP}:3001
- ${PANEL_APP_PORT_HTTP}:2283
depends_on:
- immich-redis
- immich-database
@ -29,7 +29,7 @@ services:
restart: always
networks:
- 1panel-network
image: altran1502/immich-machine-learning:v1.117.0
image: altran1502/immich-machine-learning:v1.118.2
volumes:
- ${CACHE_PATH}:/cache
environment:
@ -73,7 +73,22 @@ services:
interval: 5m
start_interval: 30s
start_period: 5m
command: ["postgres", "-c", "shared_preload_libraries=vectors.so", "-c", 'search_path="$$user", public, vectors', "-c", "logging_collector=on", "-c", "max_wal_size=2GB", "-c", "shared_buffers=512MB", "-c", "wal_compression=on"]
command:
[
'postgres',
'-c',
'shared_preload_libraries=vectors.so',
'-c',
'search_path="$$user", public, vectors',
'-c',
'logging_collector=on',
'-c',
'max_wal_size=2GB',
'-c',
'shared_buffers=512MB',
'-c',
'wal_compression=on',
]
labels:
createdBy: "Apps"

View File

@ -15,7 +15,7 @@ services:
- DB_DATABASE_NAME=${PANEL_DB_NAME}
- REDIS_HOSTNAME=${CONTAINER_NAME}-redis
ports:
- ${PANEL_APP_PORT_HTTP}:3001
- ${PANEL_APP_PORT_HTTP}:2283
depends_on:
- immich-redis
- immich-database
@ -73,7 +73,22 @@ services:
interval: 5m
start_interval: 30s
start_period: 5m
command: ["postgres", "-c", "shared_preload_libraries=vectors.so", "-c", 'search_path="$$user", public, vectors', "-c", "logging_collector=on", "-c", "max_wal_size=2GB", "-c", "shared_buffers=512MB", "-c", "wal_compression=on"]
command:
[
'postgres',
'-c',
'shared_preload_libraries=vectors.so',
'-c',
'search_path="$$user", public, vectors',
'-c',
'logging_collector=on',
'-c',
'max_wal_size=2GB',
'-c',
'shared_buffers=512MB',
'-c',
'wal_compression=on',
]
labels:
createdBy: "Apps"