Dockerfile fix

This commit is contained in:
2023-03-17 13:28:57 -01:00
parent 7cef0d9133
commit 21d4e7a647
2 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ Deal Module (dm) - the Bitdeals daemon that provides a special interfaces for cr
On first run the initialization script will create (if it is empty), a new bitcoin and PGP keys and start the daemon. On first run the initialization script will create (if it is empty), a new bitcoin and PGP keys and start the daemon.
Daemon settings which may specified by an environment variables are saved to the daemon config files on the Docker Volume. Daemon settings may specified by an environment variables. PGP secret key is stored on a Docker volume.
# Usage # Usage

View File

@@ -15,13 +15,13 @@ DM_TESTNET=${DM_TESTNET:-0}
CONF_FILES=$(find /etc/dm/ -type f -name "*.conf" -not -name "default.conf") CONF_FILES=$(find /etc/dm/ -type f -name "*.conf" -not -name "default.conf")
BITDEALS_PGP_FILE="/etc/dm/bitdeals.asc" BITDEALS_PGP_FILE="/etc/dm/bitdeals.asc"
BITDEALS_TEST_PGP_FILE="/etc/dm/bitdeals-testnet.asc" BITDEALS_TEST_PGP_FILE="/etc/dm/bitdeals-testnet.asc"
PGP_SEC_FILE="$UHOME/pgp.sec" PGP_SEC_FILE="$UHOME/pgp-key.sec"
BX_CONF_FILE="/usr/local/etc/libbitcoin/bx.cfg" BX_CONF_FILE="/usr/local/etc/libbitcoin/bx.cfg"
WEB_CONF_FILE="/var/www/web/config.js" WEB_CONF_FILE="/var/www/web/config.js"
WEB_CONF_SITES="/etc/dm/sites/default.json" WEB_CONF_SITES="/etc/dm/sites/default.json"
WEB_CONF_OAUTH="/etc/dm/oauth2/default.json" WEB_CONF_OAUTH="/etc/dm/oauth2/default.json"
WEB_CERT="$UHOME/fullchain.pem" WEB_CERT="$UHOME/ssl-fullchain.pem"
WEB_KEY="$UHOME/privkey.pem" WEB_KEY="$UHOME/ssl-privkey.pem"
WEB_DH="/etc/ssl/dhparam.pem" WEB_DH="/etc/ssl/dhparam.pem"
BITCOIN_KEYS_BACKUP="$UHOME/bitcoin.backup_and_remove" BITCOIN_KEYS_BACKUP="$UHOME/bitcoin.backup_and_remove"