123456789101112131415161718192021222324252627282930313233343536373839 |
- images:
- image:
- repository: ccr.ccs.tencentyun.com/seembox/ghcr.io_rommapp_romm
- tag: 4.1.6
- postgres_17_image:
- repository: postgres
- tag: 17.6-bookworm
- redis_image:
- repository: valkey/valkey
- tag: 8.1.3
- postgres_upgrade_image:
- repository: ixsystems/postgres-upgrade
- tag: 1.0.4
- consts:
- init_container_name: init
- romm_container_name: romm
- perms_container_name: permissions
- postgres_container_name: postgres
- redis_container_name: redis
- base_path: /romm
- db_user: postgres
- db_name: postgres
- internal_web_port: 8080
- notes_body: |
- Check out the [Quick Start Guide](https://github.com/rommapp/romm/wiki/Quick-Start-Guide)
- and [general documentation](https://github.com/rommapp/romm/wiki) for more information.
- init_script: |
- #!/bin/sh
- set -e
- url="https://raw.githubusercontent.com/rommapp/romm/refs/heads/master/examples/config.example.yml"
- if [ -f "/romm/config/config.yml" ]; then
- echo "Config file found, skipping..."
- exit 0
- fi
- echo "No config file found, fetching default config from $url"
- wget -O /romm/config/config.yml "$url"
|