##// 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
release of new installer/docker stack updates...
r23 #COMPOSE_PROJECT_NAME=rc_cluster
docker: added all the initial docker files...
r1 TZ="UTC"
release of new installer/docker stack updates...
r23
docker: added all the initial docker files...
r1 # Version to deploy and run
release of new installer/docker stack updates...
r23 ## 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"
docker: added all the initial docker files...
r1
release of new installer/docker stack updates...
r23 # Database bootstrap/access credentials
docker: updated to 4.25.0
r4 DB_NAME=rhodecode
DB_USER=rhodecode
docker: added all the initial docker files...
r1
release of new installer/docker stack updates...
r23 # Bootstrap container with specific password
# This password will be used to generate new account and password for the database
DB_PASSWORD=[GENERATED_AT_BOOTSTRAP]
docker: added all the initial docker files...
r1
release of new installer/docker stack updates...
r23 # 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
docker: added all the initial docker files...
r1
# user/password for first admin user created for access
release of new installer/docker stack updates...
r23 # this is a bootstrap super-admin account to access the web interface
RHODECODE_USER_EMAIL=admin@server-com
docker: added all the initial docker files...
r1 RHODECODE_USER_NAME=admin
env: updated env file...
r9 RHODECODE_USER_PASS=secret4
release of new installer/docker stack updates...
r23
# 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
env: updated env file...
r9 ## New since 4.27.0, default GIT branch name can be changed
compose: updates to source installation, and new build tag image support
r20 GIT_DEFAULT_BRANCH_NAME=master
release of new installer/docker stack updates...
r23