26 lines
992 B
Bash
26 lines
992 B
Bash
# Docker image tag for gitea/gitea (e.g. "1.22.0" or "latest"); defaults to latest if unset
|
|
GITEA_VERSION="latest"
|
|
|
|
# Linux username on the host whose home directory is used for the data bind mount (/home/<username>/gitea/data)
|
|
GITEA_USERNAME="gitea"
|
|
|
|
# Port that the database server allows connections on (leave default 3306)
|
|
GITEA_database_HOST="3306"
|
|
|
|
# Database name that the app server will create after connecting to the database server
|
|
GITEA_database_NAME="gitea"
|
|
|
|
# Username the app server will use to connect to the database server
|
|
GITEA_database_USER="gitea"
|
|
|
|
# Password for the database username that the app server will use to connect to the database server
|
|
GITEA_database_PASSWD="changeme"
|
|
|
|
# Password for the root user on the database server; set it to something strong, you won't need it regularly
|
|
GITEA_database_ROOT_PASSWD="changeme"
|
|
|
|
# Main interface port for accessing the application
|
|
GITEA_PORT="3000"
|
|
|
|
# SSH port exposed for Git over SSH connections
|
|
GITEA_SSH_PORT="2222" |