1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- resources:
- limits:
- cpus: 2.0
- memory: 4096
- planka:
- postgres_image_selector: postgres_17_image
- db_password: db-planka-password
- secret_key: secret-key
- default_admin_email: admin@planka.com
- default_admin_name: admin-planka
- default_admin_username: admin-planka
- default_admin_password: admin-planka-password
- base_url: http://localhost:8080
- trust_proxy: false
- additional_envs: []
- network:
- web_port:
- bind_mode: published
- port_number: 8080
- ix_volumes:
- avatars: /opt/tests/avatars
- background_images: /opt/tests/background-images
- attachments: /opt/tests/attachments
- postgres_data: /opt/tests/postgres-data
- storage:
- avatars:
- type: ix_volume
- ix_volume_config:
- dataset_name: avatars
- create_host_path: true
- background_images:
- type: ix_volume
- ix_volume_config:
- dataset_name: background_images
- create_host_path: true
- attachments:
- type: ix_volume
- ix_volume_config:
- dataset_name: attachments
- create_host_path: true
- postgres_data:
- type: ix_volume
- ix_volume_config:
- dataset_name: postgres_data
- create_host_path: true
- additional_storage: []
|