Chris
IImmich
•Created by Chris on 4/26/2025 in #help-desk-support
running any command inside immich docker
my docker compose - immich is running absolutely fine - strange how there are files missing, is that possible?
I am running this on a VPS (12gb RAM), running on Ubuntu.
9 replies
IImmich
•Created by Chris on 4/26/2025 in #help-desk-support
running any command inside immich docker
Hi,
I havent made any changes recently (bar upgrading post the above message).
docker compose:
immich-postgres:
image: tensorchord/pgvecto-rs:pg14-v0.2.0
container_name: immich-postgres
environment:
POSTGRES_PASSWORD: ${IMMICH_DB_PASSWORD}
POSTGRES_USER: immich
POSTGRES_DB: immich
command: ["postgres", "-c", "shared_preload_libraries=vectors.so"]
volumes:
- ~/docker/immich/postgres:/var/lib/postgresql/data
- /etc/localtime:/etc/localtime:ro
ports:
- "5432:5432"
restart: always
healthcheck:
test: ["CMD-SHELL", "pg_isready -U immich"]
interval: 5s
timeout: 5s
retries: 5
immich-server:
image: ghcr.io/immich-app/immich-server:release
container_name: immich_server
volumes:
- ~/media/photos:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
environment:
- REDIS_HOSTNAME=immich-redis
env_file:
- .env
ports:
- "2283:2283"
depends_on:
- immich-postgres
- immich-redis
restart: always
immich-microservices:
image: ghcr.io/immich-app/immich-server:release
container_name: immich_microservices
volumes:
- ~/media/photos:/usr/src/app/upload
- /etc/localtime:/etc/localtime:ro
environment:
- REDIS_HOSTNAME=immich-redis
env_file:
- .env
depends_on:
- immich-postgres
- immich-redis
restart: always
immich-redis:
image: docker.io/valkey/valkey:8-bookworm
container_name: immich_redis
restart: always
9 replies