basic-values.yaml 852 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. resources:
  2. limits:
  3. cpus: 2.0
  4. memory: 4096
  5. TZ: Etc/UTC
  6. bookstack:
  7. db_root_password: test
  8. db_password: test
  9. app_url: http://localhost:8080
  10. app_key: exactly-32-characters-app-keyyyy
  11. additional_envs: []
  12. network:
  13. web_port:
  14. bind_mode: published
  15. port_number: 8080
  16. ix_volumes:
  17. uploads: /opt/tests/mnt/bookstack/uploads
  18. storage_uploads: /opt/tests/mnt/bookstack/storage_uploads
  19. mariadb_data: /opt/tests/mnt/bookstack/mariadb_data
  20. storage:
  21. uploads:
  22. type: ix_volume
  23. ix_volume_config:
  24. dataset_name: uploads
  25. create_host_path: true
  26. storage_uploads:
  27. type: ix_volume
  28. ix_volume_config:
  29. dataset_name: storage_uploads
  30. create_host_path: true
  31. mariadb_data:
  32. type: ix_volume
  33. ix_volume_config:
  34. dataset_name: mariadb_data
  35. create_host_path: true
  36. additional_storage: []