1234567891011121314151617181920212223242526272829303132333435363738394041 |
- resources:
- limits:
- cpus: 2.0
- memory: 4096
- TZ: Etc/UTC
- linkwarden:
- postgres_image_selector: postgres_17_image
- db_password: password
- nextauth_secret: secret
- meilisearch_master_key: master-key
- additional_envs: []
- network:
- web_port:
- bind_mode: published
- port_number: 8080
- ix_volumes:
- data: /opt/tests/mnt/linkwarden/data
- postgres_data: /opt/tests/mnt/linkwarden/postgres-data
- meili_data: /opt/tests/mnt/linkwarden/meili-data
- storage:
- data:
- type: ix_volume
- ix_volume_config:
- dataset_name: data
- create_host_path: true
- postgres_data:
- type: ix_volume
- ix_volume_config:
- dataset_name: postgres_data
- create_host_path: true
- meili_data:
- type: ix_volume
- ix_volume_config:
- dataset_name: meili_data
- create_host_path: true
- additional_storage: []
|