Skip to content

Commit

Permalink
Merge pull request #549 from st3b1t/master
Browse files Browse the repository at this point in the history
added docker-compose.yml
  • Loading branch information
janoside authored Jun 8, 2023
2 parents c3d3255 + efad2d7 commit f5c2b37
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
version: "3.7"

networks:
default:
driver: bridge

services:
explorer:
container_name: btc-rpc-explorer
#define $UID, $GID in .env file the user to run docker and write in data folder
#user: "1000:1000"
environment:
BTCEXP_HOST: 0.0.0.0
BTCEXP_BITCOIND_URI: $BTCEXP_BITCOIND_URI
BTCEXP_ADDRESS_API: $BTCEXP_ADDRESS_API
BTCEXP_ELECTRUM_SERVERS: $BTCEXP_ELECTRUM_SERVERS
BTCEXP_SLOW_DEVICE_MODE: false
#More information mode, including Bitcoin exchange rates
#More privacy mode, no external queries
# BTCEXP_PRIVACY_MODE: true
# BTCEXP_NO_RATES: true
# BTCEXP_UI_THEME: dark
build:
context: ./
image: btc-rpc-explorer:latest
#restart: "no"
ports:
- "3002:3002"

0 comments on commit f5c2b37

Please sign in to comment.