ix_values.yaml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. images:
  2. image:
  3. repository: ccr.ccs.tencentyun.com/seembox/ghcr.io_rommapp_romm
  4. tag: 4.1.6
  5. postgres_17_image:
  6. repository: postgres
  7. tag: 17.6-bookworm
  8. redis_image:
  9. repository: valkey/valkey
  10. tag: 8.1.3
  11. postgres_upgrade_image:
  12. repository: ixsystems/postgres-upgrade
  13. tag: 1.0.4
  14. consts:
  15. init_container_name: init
  16. romm_container_name: romm
  17. perms_container_name: permissions
  18. postgres_container_name: postgres
  19. redis_container_name: redis
  20. base_path: /romm
  21. db_user: postgres
  22. db_name: postgres
  23. internal_web_port: 8080
  24. notes_body: |
  25. Check out the [Quick Start Guide](https://github.com/rommapp/romm/wiki/Quick-Start-Guide)
  26. and [general documentation](https://github.com/rommapp/romm/wiki) for more information.
  27. init_script: |
  28. #!/bin/sh
  29. set -e
  30. url="https://raw.githubusercontent.com/rommapp/romm/refs/heads/master/examples/config.example.yml"
  31. if [ -f "/romm/config/config.yml" ]; then
  32. echo "Config file found, skipping..."
  33. exit 0
  34. fi
  35. echo "No config file found, fetching default config from $url"
  36. wget -O /romm/config/config.yml "$url"