-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose-via-btc-explorer.yml
49 lines (48 loc) · 1.36 KB
/
docker-compose-via-btc-explorer.yml
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
version: "3.7"
services:
web:
container_name: btc-explorer-frontend
environment:
FRONTEND_HTTP_PORT: "8080"
BACKEND_MAINNET_HTTP_HOST: "api"
image: mempool/frontend:latest
user: "1000:1000"
restart: on-failure
stop_grace_period: 1m
command: "./wait-for db:3306 --timeout=720 -- nginx -g 'daemon off;'"
ports:
- 1880:8080
api:
container_name: btc-explorer-backend
environment:
MEMPOOL_BACKEND: "none"
CORE_RPC_HOST: "bitcoind"
CORE_RPC_PORT: "18443"
CORE_RPC_USERNAME: "rpcuser"
CORE_RPC_PASSWORD: "rpcpassword"
DATABASE_ENABLED: "true"
DATABASE_HOST: "db"
DATABASE_DATABASE: "mempool"
DATABASE_USERNAME: "mempool"
DATABASE_PASSWORD: "mempool"
STATISTICS_ENABLED: "true"
image: mempool/backend:latest
user: "1000:1000"
restart: on-failure
stop_grace_period: 1m
command: "./wait-for-it.sh db:3306 --timeout=720 --strict -- ./start.sh"
volumes:
- ./volumes/btc-explorer/data:/backend/cache
db:
container_name: btc-explorer-db
environment:
MYSQL_DATABASE: "mempool"
MYSQL_USER: "mempool"
MYSQL_PASSWORD: "mempool"
MYSQL_ROOT_PASSWORD: "admin"
image: mariadb:10.5.21
user: "1000:1000"
restart: on-failure
stop_grace_period: 1m
volumes:
- ./volumes/btc-explorer/mysql:/var/lib/mysql