##// END OF EJS Templates
rcstack: improved compatability with 4.28.0 release using rcstack
rcstack: improved compatability with 4.28.0 release using rcstack

File last commit:

r437:22f86931
r459:2f96836e
Show More
runtime.env.tmpl
52 lines | 1.7 KiB | application/x-cheetah | CheetahLexer
docker: multiple changes...
r73 ## BUILD/RUN ARGS ##
####################
rccontrol: added env control lib to be able to generate build/runtime file
r33 TZ="UTC"
config template: improve help text
r257 # Version of docker image to deploy and run
project: rename from rccontrol to rcstack
r144 # rcstack will automatically update and adjust this if needed
config template: improve help text
r257 # to set a custom version run ./rcstack cli set-runtime-image VER (e.g 5.0.0)
fix(runtime): don't hardcode the version into template for runtime env
r437 RC_VERSION=stable
rccontrol: added env control lib to be able to generate build/runtime file
r33
docker: multiple changes...
r73 # Select RhodeCode edition ce (free community), or ee (paid/enterprise)
rccontrol: added env control lib to be able to generate build/runtime file
r33 RC_EDITION=ee
docker: multiple changes...
r73 # GENERATED ARGS #
##################
# 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=512M
rccontrol: added env control lib to be able to generate build/runtime file
r33
# Database bootstrap/access credentials
# Bootstrap container with specific password
# This password will be used to generate new account and password for the database
docker: multiple changes...
r73 # Please don't change those unless you use your own database
rccontrol: added env control lib to be able to generate build/runtime file
r33 DB_NAME=rhodecode
DB_USER=rhodecode
DB_PASSWORD=GENERATED_AT_BOOTSTRAP
# 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
docker: multiple changes...
r73 # prependend to loki url prefix, this will be generated
chore(comments): added info about Loki auth format
r300 # format is username:plaintext_password
docker: multiple changes...
r73 RC_LOKI_AUTH=loki-auth:password@
# base url for running app, this is used for traefik hasname matching, so accessing this host will redirect
# traffic to the running instance. This needs to be the same as RC_APP_BASE_URL
# replace this with your name of host. e.g yourdomain.com or rc.company.local
RC_HOSTNAME=base-url
# application base url, at which location including a scheme (http/https) this app will be
# running, this needs to be a valid resolvable domain for rhodecode links to work properly
rccontrol: small fixes docs/defaults
r126 RC_APP_BASE_URL=http://base-url
# use celery workers/scheduler
RC_USE_CELERY=true