Cleanup and commenting on environment variables
This commit is contained in:
parent
ded07ec9a1
commit
3dbbcd05c1
1 changed files with 15 additions and 11 deletions
|
@ -1,13 +1,17 @@
|
||||||
COMPOSE_PROJECT_NAME=chainquery
|
COMPOSE_PROJECT_NAME=chainquery
|
||||||
## Currently unused until start.sh gains magic powers.
|
|
||||||
RPC_USER=lbryrpc
|
|
||||||
RPC_PASSWORD=changeme
|
|
||||||
## This should be the internal container IP from which you'll be calling the RPC for Lbrycrdd from.
|
|
||||||
RPC_ALLOW_IP=10.5.1.3
|
|
||||||
|
|
||||||
## Mysql Creds to be shared between Chainquery and Mysql container
|
#########################
|
||||||
MYSQL_SERVER=10.5.1.10
|
## Chainquery Settings ##
|
||||||
MYSQL_USER=changeme
|
#########################
|
||||||
MYSQL_PASSWORD=changeme
|
RPC_USER=lbryrpc ## Not super necessery to change this.
|
||||||
MYSQL_DATABASE=chainquery
|
RPC_PASSWORD=changeme ## Please replace changeme.
|
||||||
MYSQL_ROOT_PASSWORD=changeme
|
RPC_ALLOW_IP=10.5.1.3 ## You're better off not changing this.
|
||||||
|
|
||||||
|
#################
|
||||||
|
## Mysql Creds ##
|
||||||
|
#################
|
||||||
|
MYSQL_SERVER=10.5.1.10 ## You're better off not changing this.
|
||||||
|
MYSQL_USER=changeme ## This could be changed.
|
||||||
|
MYSQL_PASSWORD=changeme ## This could be set to something random it sets this string for both Mysql's main user and Chainquery's MysqlDSN.
|
||||||
|
MYSQL_DATABASE=chainquery ## This can stay the same.
|
||||||
|
MYSQL_ROOT_PASSWORD=changeme ## Set this to something random and obnoxious we're not using it.
|
||||||
|
|
Loading…
Reference in a new issue