123456789101112131415161718192021222324252627282930313233343536373839404142 |
- resources:
- limits:
- cpus: 2
- memory: 4096
- TZ: America/New_York
- nocodb:
- postgres_image_selector: postgres_17_image
- db_password: password
- redis_password: password
- jwt_secret: test-jwt-secret-for-development-only
- admin_email: admin@example.com
- admin_password: password
- public_url: http://localhost:8081
- invite_only_signup: false
- disable_telemetry: true
- run_as:
- user: 568
- group: 568
- ix_volumes:
- data: /opt/tests/mnt/nocodb/data
- postgres_data: /opt/tests/mnt/nocodb/postgres_data
- network:
- web_port:
- bind_mode: published
- port_number: 8081
- 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
|