Added initial gitea config
This commit is contained in:
parent
d13573f87d
commit
0a6ffbf67d
4 changed files with 111 additions and 7 deletions
16
gitea/.env.example
Normal file
16
gitea/.env.example
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# User to run container as
|
||||
USER_UID=1000
|
||||
USER_GID=1000
|
||||
|
||||
# Database settings
|
||||
DB_TYPE=postgres
|
||||
DB_HOST=db:5432
|
||||
DB_NAME=gitea
|
||||
DB_USER=gitea
|
||||
DB_PASSWD=gitea
|
||||
|
||||
# Wether to start LFS
|
||||
LFS_START_SERVER=true
|
||||
|
||||
# Wether to allow registration
|
||||
DISABLE_REGISTRATION=true
|
||||
Reference in a new issue