We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f70758d commit 529f9d0Copy full SHA for 529f9d0
docker/etc/s6/gitea/setup
@@ -21,7 +21,7 @@ if [ ! -f /data/gitea/conf/app.ini ]; then
21
22
# Substitude the environment variables in the template
23
APP_NAME=${APP_NAME:-"Gitea: Git with a cup of tea"} \
24
- APP_MODE=${APP_MODE:-"dev"} \
+ RUN_MODE=${RUN_MODE:-"dev"} \
25
SSH_DOMAIN=${SSH_DOMAIN:-"localhost"} \
26
HTTP_PORT=${HTTP_PORT:-"3000"} \
27
ROOT_URL=${ROOT_URL:-""} \
docker/etc/templates/app.ini
@@ -1,6 +1,7 @@
1
-[repository]
2
APP_NAME = $APP_NAME
3
-APP_MODE = $APP_MODE
+RUN_MODE = $RUN_MODE
+
4
+[repository]
5
ROOT = /data/git/repositories
6
7
[repository.upload]
0 commit comments