mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 15:19:09 +01:00
4266bd924b
* Update document to use FHS `/usr/local/bin/gitea` instead of `/app/...` in Docker * Update docs/content/doc/installation/with-docker.zh-cn.md
15 lines
580 B
Bash
15 lines
580 B
Bash
#!/bin/bash
|
|
|
|
###############################################################
|
|
# This script sets defaults for gitea to run in the container #
|
|
###############################################################
|
|
|
|
# It assumes that you place this script as gitea in /usr/local/bin
|
|
#
|
|
# And place the original in /usr/lib/gitea with working files in /data/gitea
|
|
GITEA="/app/gitea/gitea"
|
|
WORK_DIR="/app/gitea"
|
|
CUSTOM_PATH="/data/gitea"
|
|
|
|
# Provide docker defaults
|
|
GITEA_WORK_DIR="${GITEA_WORK_DIR:-$WORK_DIR}" GITEA_CUSTOM="${GITEA_CUSTOM:-$CUSTOM_PATH}" exec -a "$0" "$GITEA" $CONF_ARG "$@"
|