mirror of
https://github.com/RoboSats/robosats-deploy.git
synced 2025-08-07 10:30:07 +00:00
65 lines
1.7 KiB
Bash
65 lines
1.7 KiB
Bash
ROBOSATS_DOCKER_TAG=latest
|
|
|
|
LOCAL_USER_ID=1000
|
|
LOCAL_GROUP_ID=1000
|
|
|
|
STATIC='/custom_path/testnet/static'
|
|
DATABASE='/custom_path/testnet/database'
|
|
|
|
# PG backup is generated by robo-backup as a cronjob
|
|
PG_BACKUP='/custom_path/testnet/pg_backup'
|
|
ROBOSATS_ENVS_FILE='env/robosats-lndtn.env'
|
|
THUB_ENVS_FILE='env/thub-lndtn.env'
|
|
SUFFIX='-lndtn'
|
|
NETWORK='testnet'
|
|
|
|
# Postgresql Database (Should match with those in robosats-tn.env)
|
|
POSTGRES_NAME='postgres'
|
|
POSTGRES_USER='postgres'
|
|
POSTGRES_PASSWORD='example'
|
|
|
|
BITCOIND_VERSION='24.0.1-alpine'
|
|
LND_VERSION='v0.16.4-beta'
|
|
|
|
# LND healthcheck will "lookup invoice EXISTING_INVOICE_HASH" to restart the container if the RPC is unresponsive
|
|
# EXISTING_INVOICE_HASH must be an existing invoice created with "addinvoice"
|
|
EXISTING_INVOICE_HASH=09252cbbd241d5a8e25573d1d00b22d959abcf8f394a3e4c6ac12be0c5e000cf
|
|
|
|
NGINX_CONFD='./nginx/tn.conf.d'
|
|
WELLKNOWN='./nginx/tn.well-known'
|
|
|
|
WEB_LOCAL_PORT=8001
|
|
GUNICORN_WORKERS=2
|
|
|
|
BU_DIR1='/backup'
|
|
BU_DIR2='/custom_path/backup'
|
|
BU_DIR3='/custom_path/backup2'
|
|
|
|
BITCOIN_DATA='/custom_path/testnet/bitcoin'
|
|
BITCOIN_CONF='./env/bitcoin-tn.conf'
|
|
LND_DATA='/custom_path/testnet/lnd'
|
|
LIT_DATA='/custom_path/testnet/lit'
|
|
TOR_DATA='/custom_path/testnet/tor/data'
|
|
TOR_CONFIG='/custom_path/testnet/tor/config'
|
|
|
|
GUEST_BITCOIN=/home/bitcoin/.bitcoin
|
|
GUEST_LND=/home/lnd/.lnd
|
|
GUEST_TOR_DATA='/var/lib/tor'
|
|
GUEST_TOR_CONFIG='/etc/tor'
|
|
|
|
GUEST_LND_RPC_PORT=10009
|
|
GUEST_LND_REST_PORT=8080
|
|
|
|
HOST_LND_RPC_PORT=10009
|
|
HOST_LND_REST_PORT=8080
|
|
|
|
THUB_LOCAL_PORT=3001
|
|
LIT_LOCAL_PORT=4001
|
|
LIT_PASSWORD=999999999
|
|
|
|
LND_BACKUP_PATH='/custom_path/testnet/lnd-backup'
|
|
NODE_ALIAS='🤖RoboSats⚡(Testnet)'
|
|
NODE_COLOR='#4126a7'
|
|
|
|
AUTO_UNLOCK_PWD=12345678
|