-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env
More file actions
executable file
·51 lines (38 loc) · 1.73 KB
/
.env
File metadata and controls
executable file
·51 lines (38 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
################################################################################
# ⚙️ Global Docker Configuration
################################################################################
# 🧠 Fast Storage (e.g., NVMe) – Docker configs, volumes, logs
DOCKERCONFDIR=/volume2/docker/appdata
# 🧱 Slow Storage (e.g., HDD) – Blockchain data (e.g., bitcoin blocks)
DOCKERSTORAGEDIR=/volume1/data
# 👤 Docker container user/group mapping (get with: id docker)
PUID=1032
PGID=100
# 🌍 Timezone
TZ=Europe/Vienna
# 🪵 Docker logging configuration
DOCKERLOGGING_MAXFILE=10
DOCKERLOGGING_MAXSIZE=200k
################################################################################
# 📈 InfluxDB + Grafana Setup
################################################################################
# InfluxDB Initialization
INFLUXDB_USERNAME=admin
INFLUXDB_PASSWORD=password
INFLUXDB_ORG=muffin_mining
INFLUXDB_BUCKET=nerdq_data
INFLUXDB_TOKEN=mam-wipes-spikes-surfing
# Grafana Initialization
GRAFANA_INIT_USERNAME=admin
GRAFANA_INIT_PASSWORD=password
################################################################################
# 🔐 Bitcoin RPC Authentication
################################################################################
# ➕ Generate secure rpcauth string (replace username if needed):
# curl -sSL https://raw.githubusercontent.com/bitcoin/bitcoin/master/share/rpcauth/rpcauth.py | python3 - ckpool
# RPC username for external tools (e.g., mempool-api, ckpool)
CORE_RPC_USERNAME=will-be-replaced-with-setup.sh
# RPC password (must match the one used during rpcauth generation!)
CORE_RPC_PASSWORD=will-be-replaced-with-setup.sh
# Secure rpcauth line (for bitcoin.conf)
BITCOIN_RPCAUTH=will-be-replaced-with-setup.sh