old-storage-values.yaml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. immich:
  6. enable_ml: true
  7. ml_image_selector: ml_image
  8. log_level: log
  9. hugging_face_endpoint: ""
  10. db_password: immich
  11. redis_password: immich
  12. db_storage_type: SSD
  13. additional_envs: []
  14. network:
  15. web_port:
  16. bind_mode: published
  17. port_number: 8080
  18. run_as:
  19. user: 568
  20. group: 568
  21. ix_volumes:
  22. postgres-data: /opt/tests/mnt/immich/postgres-data
  23. library: /opt/tests/mnt/immich/library
  24. uploads: /opt/tests/mnt/immich/uploads
  25. thumbs: /opt/tests/mnt/immich/thumbs
  26. profile: /opt/tests/mnt/immich/profile
  27. video: /opt/tests/mnt/immich/video
  28. backups: /opt/tests/mnt/immich/backups
  29. storage:
  30. use_old_storage_config: true
  31. postgres_data:
  32. type: ix_volume
  33. ix_volume_config:
  34. dataset_name: postgres-data
  35. create_host_path: true
  36. library:
  37. type: ix_volume
  38. ix_volume_config:
  39. dataset_name: library
  40. create_host_path: true
  41. uploads:
  42. type: ix_volume
  43. ix_volume_config:
  44. dataset_name: uploads
  45. create_host_path: true
  46. thumbs:
  47. type: ix_volume
  48. ix_volume_config:
  49. dataset_name: thumbs
  50. create_host_path: true
  51. profile:
  52. type: ix_volume
  53. ix_volume_config:
  54. dataset_name: profile
  55. create_host_path: true
  56. video:
  57. type: ix_volume
  58. ix_volume_config:
  59. dataset_name: video
  60. create_host_path: true
  61. backups:
  62. type: ix_volume
  63. ix_volume_config:
  64. dataset_name: backups
  65. create_host_path: true
  66. ml_cache:
  67. type: temporary
  68. additional_storage: []