basic-values.yaml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. TZ: Europe/Athens
  2. penpot:
  3. postgres_image_selector: postgres_17_image
  4. secret_key: change-me
  5. db_password: penpot
  6. redis_password: penpot
  7. # For register/login, you can't user localhost.
  8. # For testing set it to your local ip.
  9. public_uri: http://10.20.30.192:8080
  10. # Flags below disable/enable stuff in order to work
  11. # with http and without smtp.
  12. flags:
  13. - enable: true
  14. name: prepl-server
  15. - enable: true
  16. name: login-with-password
  17. - enable: true
  18. name: registration
  19. - enable: true
  20. name: insecure-register
  21. - enable: true
  22. name: smtp
  23. - enable: true
  24. name: log-emails
  25. - enable: false
  26. name: email-verification
  27. - enable: false
  28. name: secure-session-cookies
  29. additional_envs: []
  30. network:
  31. web_port:
  32. bind_mode: published
  33. port_number: 8080
  34. ix_volumes:
  35. assets: /opt/tests/mnt/data
  36. postgres_data: /opt/tests/mnt/postgres_data
  37. storage:
  38. assets:
  39. type: ix_volume
  40. ix_volume_config:
  41. dataset_name: assets
  42. create_host_path: true
  43. postgres_data:
  44. type: ix_volume
  45. ix_volume_config:
  46. dataset_name: postgres_data
  47. create_host_path: true
  48. additional_storage: []