pmow

Immich docker compose

Nov 17th, 2024
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml
  2.  
  3. #PMOW NOTES
  4. #network must be attached for proxy, see bash file
  5.  
  6.  
  7.  
  8. name: immich
  9.  
  10. services:
  11.   immich-server:
  12.     container_name: immich_server
  13.     image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
  14.     # extends:
  15.     #   file: hwaccel.transcoding.yml
  16.     #   service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
  17.     volumes:
  18.      # Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
  19.       - ${UPLOAD_LOCATION}:/usr/src/app/upload
  20.       - /etc/localtime:/etc/localtime:ro
  21.     env_file:
  22.      - stack.env
  23.     environment:
  24.      - VIRTUAL_HOST=immich.pmow.org
  25.       - LETSENCRYPT_HOST=immich.pmow.org
  26.       - VIRTUAL_PROTO=http
  27.  
  28.     #enable for large file batch uploads circumventing any proxy shenanigans
  29.     ports:
  30.    - '2283:2283'
  31.     depends_on:
  32.      - redis
  33.       - database
  34.     restart: always
  35.     healthcheck:
  36.       disable: false
  37.  
  38.   immich-machine-learning:
  39.     container_name: immich_machine_learning
  40.     # For hardware acceleration, add one of -[armnn, cuda, openvino] to the image tag.
  41.     # Example tag: ${IMMICH_VERSION:-release}-cuda
  42.     image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
  43.     # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
  44.     #   file: hwaccel.ml.yml
  45.     #   service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable
  46.     volumes:
  47.      - model-cache:/cache
  48.     env_file:
  49.      - stack.env
  50.     restart: always
  51.     healthcheck:
  52.       disable: false
  53.  
  54.   redis:
  55.     container_name: immich_redis
  56.     image: docker.io/redis:6.2-alpine@sha256:2ba50e1ac3a0ea17b736ce9db2b0a9f6f8b85d4c27d5f5accc6a416d8f42c6d5
  57.     healthcheck:
  58.       test: redis-cli ping || exit 1
  59.     restart: always
  60.  
  61.   database:
  62.     container_name: immich_postgres
  63.     image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
  64.     environment:
  65.       POSTGRES_PASSWORD: ${DB_PASSWORD}
  66.       POSTGRES_USER: ${DB_USERNAME}
  67.       POSTGRES_DB: ${DB_DATABASE_NAME}
  68.       POSTGRES_INITDB_ARGS: '--data-checksums'
  69.     volumes:
  70.      # Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file
  71.       - ${DB_DATA_LOCATION}:/var/lib/postgresql/data
  72.     healthcheck:
  73.       test: pg_isready --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' || exit 1; Chksum="$$(psql --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' --tuples-only --no-align --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')"; echo "checksum failure count is $$Chksum"; [ "$$Chksum" = '0' ] || exit 1
  74.       interval: 5m
  75.       start_interval: 30s
  76.       start_period: 5m
  77.     command:
  78.      [
  79.         'postgres',
  80.         '-c',
  81.         'shared_preload_libraries=vectors.so',
  82.         '-c',
  83.         'search_path="$$user", public, vectors',
  84.         '-c',
  85.         'logging_collector=on',
  86.         '-c',
  87.         'max_wal_size=2GB',
  88.         '-c',
  89.         'shared_buffers=512MB',
  90.         '-c',
  91.         'wal_compression=on',
  92.       ]
  93.     restart: always
  94.  
  95. volumes:
  96.  model-cache:
Add Comment
Please, Sign In to add comment