1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- resources:
- limits:
- cpus: 2.0
- memory: 4096
- forgejo:
- postgres_image_selector: postgres_17_image
- db_password: password
- root_url: https://forgejo.example.com
- additional_envs: []
- run_as:
- user: 568
- group: 568
- network:
- web_port:
- bind_mode: published
- port_number: 8080
- ssh_port:
- bind_mode: published
- port_number: 2222
- external_ssh_port: null
- certificate_id:
- ix_volumes:
- config: /opt/tests/forgejo/config
- data: /opt/tests/forgejo/data
- postgres_data: /opt/tests/forgejo/postgres_data
- storage:
- config:
- type: ix_volume
- ix_volume_config:
- dataset_name: config
- create_host_path: true
- 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
- additional_storage: []
|