Newer
Older
gitbucket / gitbucket.conf.example
  1. ## gitbucket configuration
  2. # address to bind the the web port to
  3. GITBUCKET_WEB_BIND=127.0.0.1
  4.  
  5. # address ti bind the ssh port to
  6. GITBUCKET_SSH_BIND=127.0.0.1
  7.  
  8. # web port
  9. GITBUCKET_WEB_PORT=8080
  10.  
  11. # ssh port
  12. GITBUCKET_SSH_PORT=29418
  13.  
  14. # gitbucket user id. should be the same as your current user id.
  15. # use setUserID.sh
  16. GITBUCKET_USER_ID=9000
  17.  
  18. # max file size for uploaded files in bytes
  19. GITBUCKET_MAX_FILE_SIZE=10485760
  20.  
  21.  
  22. ## database configuration
  23. # mysql root user password
  24. GITBUCKET_DATABASE_ROOT=83wwX7YMRKnVIsGIxPyPwu9u6SaZ
  25.  
  26. # database for gibucket
  27. GITBUCKET_DATABASE_NAME=gitbucket
  28.  
  29. # database user
  30. GITBUCKET_DATABASE_USER=gitbucket
  31.  
  32. # database password
  33. GITBUCKET_DATABASE_PASSWORD=QzB3htEVYNV5aKd1RLFZi9LcSd2F
  34.  
  35.  
  36. # Timezone one of /usr/share/zoneinfo
  37. TZ=Europe/Berlin
  38.  
  39.  
  40. ## compose project name
  41. # this have to be unique for more then one gitbucket instance per docker host
  42. COMPOSE_PROJECT_NAME=gitbucket