diff options
author | Sandro Santilli <strk@kbt.io> | 2016-11-07 11:41:50 +0100 |
---|---|---|
committer | Sandro Santilli <strk@kbt.io> | 2016-11-07 16:05:18 +0100 |
commit | b7263f31a5a0a4a0ac8fe92c83563d7b7dcf7423 (patch) | |
tree | 782bbf98af42c4ffb3d8c38dc787911706d1390e /Dockerfile.rpi | |
parent | 1b962bac0bb00d6ce2bfd29fdeb1f95301e17b98 (diff) | |
download | gitea-b7263f31a5a0a4a0ac8fe92c83563d7b7dcf7423.tar.gz gitea-b7263f31a5a0a4a0ac8fe92c83563d7b7dcf7423.zip |
Replace GOGS with GITEA in variable names
Still use GOGS_WORK_DIR and GOGS_CUSTOM env variables
as a fallback if the equivalent GITEA_* are not set,
warning user about the need for change.
Does not change "gogs" to "gitea" in webhook type name
Because "gogs" hook type is part of the API (routes) and used
in templates...
Closes #87
Diffstat (limited to 'Dockerfile.rpi')
-rw-r--r-- | Dockerfile.rpi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile.rpi b/Dockerfile.rpi index 8fbe8252b6..8e034fe204 100644 --- a/Dockerfile.rpi +++ b/Dockerfile.rpi @@ -9,7 +9,7 @@ RUN chmod +x /usr/sbin/gosu \ && apk -U --no-progress upgrade && rm -f /var/cache/apk/APKINDEX.* \ && apk --no-cache --no-progress add ca-certificates bash git linux-pam s6 curl openssh socat tzdata -ENV GOGS_CUSTOM /data/gogs +ENV GITEA_CUSTOM /data/gogs COPY . /app/gogs/ WORKDIR /app/gogs/ |