Skip to content

Commit

Permalink
chore: update immich to v1.118.1 (#596)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cp0204 authored Oct 16, 2024
1 parent 3eef178 commit 92bf18c
Showing 1 changed file with 26 additions and 11 deletions.
37 changes: 26 additions & 11 deletions Apps/Immich/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ services:
memory: 1024M
container_name: immich-server
hostname: immich-server
image: altran1502/immich-server:v1.115.0
image: altran1502/immich-server:v1.118.1
volumes:
- /DATA/Gallery/immich:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
environment:
- DB_DATABASE_NAME=immich
- DB_PASSWORD=postgres
- DB_USERNAME=postgres
DB_DATABASE_NAME: immich
DB_PASSWORD: postgres
DB_USERNAME: postgres
ports:
- '2283:2283'
depends_on:
- redis
- database
ports:
- 2283:3001
restart: unless-stopped
healthcheck:
disable: false
Expand All @@ -30,11 +30,11 @@ services:
immich-machine-learning:
container_name: immich-machine-learning
hostname: immich-machine-learning
image: altran1502/immich-machine-learning:v1.115.0
image: altran1502/immich-machine-learning:v1.118.1
environment:
- DB_DATABASE_NAME=immich
- DB_PASSWORD=postgres
- DB_USERNAME=postgres
DB_DATABASE_NAME: immich
DB_PASSWORD: postgres
DB_USERNAME: postgres
restart: unless-stopped
volumes:
- /DATA/AppData/immich/model-cache:/cache
Expand Down Expand Up @@ -71,7 +71,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',
]
restart: unless-stopped
networks:
- immich
Expand Down

0 comments on commit 92bf18c

Please sign in to comment.