kupomopan
IImmich
•Created by kupomopan on 5/25/2025 in #help-desk-support
Upgrading other components of the app (I use portainer)
Hello All,
I'm noob when it comes to docker containers and afraid to update the other containers that Immich uses. I have the following docker-compose.yml... I can see it only updates anything immich and doesn't touch the postgresql and the redis... Now, what do I need to do if I want to update those? Or should I not bother?
name: immich
redis:
container_name: immich_redis
image: docker.io/redis:6.2-alpine@sha256:eaba718fecd1196d88533de7ba49bf903ad33664a92debb24660a922ecd9cac8
healthcheck:
test: redis-cli ping || exit 1
restart: always
database:
container_name: immich_postgres
image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
POSTGRES_INITDB_ARGS: '--data-checksums'
5 replies