fixed a bunch of variables and modified the Gitea compose a lot
This commit is contained in:
+12
-9
@@ -1,7 +1,10 @@
|
||||
# Specifiy the type of database server you are using so Gitea knows (leave default mysql for this docker compose setup)
|
||||
GITEA_database_DB_TYPE="mysql"
|
||||
# Docker image tag for gitea/gitea (e.g. "1.22.0" or "latest"); defaults to latest if unset
|
||||
GITEA_VERSION="latest"
|
||||
|
||||
# Port that the database server allows connection between the app server and the database server (leave default 3306)
|
||||
# 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
|
||||
@@ -13,11 +16,11 @@ 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="8000"
|
||||
GITEA_PORT="3000"
|
||||
|
||||
# SSH port you can expose for some applciations to connect instead of HTTPS
|
||||
SSH_PORT="2222"
|
||||
|
||||
# Password for the Root user on the database server. You won't have to use this so just set it to something strong
|
||||
GITEA_database_ROOT_PASSWD="changeme"
|
||||
# SSH port exposed for Git over SSH connections
|
||||
GITEA_SSH_PORT="2222"
|
||||
Reference in New Issue
Block a user