12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- resources:
- limits:
- cpus: 2.0
- memory: 4096
- photoview:
- postgres_image_selector: postgres_17_image
- db_password: password
- additional_envs: []
- network:
- host_network: false
- web_port:
- bind_mode: published
- port_number: 8080
- run_as:
- user: 568
- group: 568
- ix_volumes:
- media_cache: /opt/tests/mnt/photoview/media_cache
- photos: /opt/tests/mnt/photoview/photos
- postgres_data: /opt/tests/mnt/photoview/postgres_data
- storage:
- media_cache:
- type: ix_volume
- ix_volume_config:
- dataset_name: media_cache
- create_host_path: true
- postgres_data:
- type: ix_volume
- ix_volume_config:
- dataset_name: postgres_data
- create_host_path: true
- additional_storage:
- - mount_path: /photos
- type: ix_volume
- read_only: true
- ix_volume_config:
- dataset_name: photos
- create_host_path: true
|