##// END OF EJS Templates
release of new installer/docker stack updates...
release of new installer/docker stack updates Tons of changes to move towards new rccontrol docker stack based installer

File last commit:

r23:ffcea5dc
r23:ffcea5dc
Show More
.env
56 lines | 1.4 KiB | text/plain | TextLexer
#COMPOSE_PROJECT_NAME=rc_cluster
TZ="UTC"
# Version to deploy and run
## VERSION_INFO
RC_VERSION="4.28.0.REL20221120_SOURCE"
#RC_CLI_VERSION_NAME="4.27.0"
# ce, or ee
RC_EDITION=ee
RC_IMAGE_CE="rhodecode/rhodecode-ee:$RC_VERSION"
RC_IMAGE_EE="rhodecode/rhodecode-ce:$RC_VERSION"
# Database bootstrap/access credentials
DB_NAME=rhodecode
DB_USER=rhodecode
# Bootstrap container with specific password
# This password will be used to generate new account and password for the database
DB_PASSWORD=[GENERATED_AT_BOOTSTRAP]
# set limit of redis in-memory cache before keys get evicted using LRU cache
RC_REDIS_MAXMEMORY=1024mb
# set the size of ramdisk used for locking files
RC_DATA_RAMDISK_SIZE=1G
# base url for running app, this is used for traefik hasname matching, so accessing this host will redirect
# traffic to the running instance
# replace this with your name of host. e.g http://yourdomain.com or https://rc.company.local
RHODECODE_HOSTNAME=docker-dev
# user/password for first admin user created for access
# this is a bootstrap super-admin account to access the web interface
RHODECODE_USER_EMAIL=admin@server-com
RHODECODE_USER_NAME=admin
RHODECODE_USER_PASS=secret4
# HTTP and HTTPS ports for running app
RC_HTTP_PORT=8888
# SSH Port exposed, increased security is to not used default 22
RC_SSH_PORT=3022
## RHODECODE RUNTIME VARS
## New since 4.27.0, default GIT branch name can be changed
GIT_DEFAULT_BRANCH_NAME=master