diff options
author | Kyle D <kdumontnu@gmail.com> | 2021-02-23 14:21:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-23 20:21:44 +0100 |
commit | 61f347e3499ef55c57b87e09e92fa44ec127b451 (patch) | |
tree | a8e0e1b374a48fb873c63f2a71495a7945b38a98 /docker/root/etc | |
parent | 428d0edcb08bfb8824780ff91abf93d5932cf9d9 (diff) | |
download | gitea-61f347e3499ef55c57b87e09e92fa44ec127b451.tar.gz gitea-61f347e3499ef55c57b87e09e92fa44ec127b451.zip |
Add environment-to-ini to docker image (#14762)
* Add environment-to-app.ini routine
* Call environment-to-ini in docker setup scripts
* Automatically convert section vars to lower case to match documentation
* Remove git patch instructions
* Add env variable documentation to Install Docker
Diffstat (limited to 'docker/root/etc')
-rwxr-xr-x | docker/root/etc/s6/gitea/setup | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docker/root/etc/s6/gitea/setup b/docker/root/etc/s6/gitea/setup index 4449420b99..38187b29e0 100755 --- a/docker/root/etc/s6/gitea/setup +++ b/docker/root/etc/s6/gitea/setup @@ -48,6 +48,9 @@ if [ ! -f ${GITEA_CUSTOM}/conf/app.ini ]; then chown ${USER}:git ${GITEA_CUSTOM}/conf/app.ini fi +# Replace app.ini settings with env variables in the form GITEA__SECTION_NAME__KEY_NAME +environment-to-ini --config ${GITEA_CUSTOM}/conf/app.ini + # only chown if current owner is not already the gitea ${USER}. No recursive check to save time if ! [[ $(ls -ld /data/gitea | awk '{print $3}') = ${USER} ]]; then chown -R ${USER}:git /data/gitea; fi if ! [[ $(ls -ld /app/gitea | awk '{print $3}') = ${USER} ]]; then chown -R ${USER}:git /app/gitea; fi |