1 Star 0 Fork 0

王波小/wallet

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-compose.yml 1.99 KB
一键复制 编辑 原始数据 按行查看 历史
version: '3.7'
services:
traefik:
image: traefik:v2.4
command:
- "--api.insecure=true"
- "--providers.docker=true"
- "--entrypoints.web.address=:80"
- "--entrypoints.ping.address=:8082"
- "--ping.entryPoint=ping"
ports:
- "19553:80"
- "19552:8080"
- "19551:8082"
volumes:
- "/var/run/docker.sock:/var/run/docker.sock:ro"
defi-blockchain:
image: defi/defichain:2.3.1
command: >
defid
-printtoconsole
-rpcallowip=0.0.0.0/0
-rpcbind=0.0.0.0
-rpcuser=playground
-rpcpassword=playground
-rpcworkqueue=512
-masternode_operator=mswsMVsyGMj1FzDMbbxw2QW3KvQAv2FKiy
-regtest=1
-jellyfish_regtest=1
-txnotokens=0
-logtimemicros
-txindex=1
-acindex=1
-amkheight=0
-bayfrontheight=1
-bayfrontgardensheight=2
-clarkequayheight=3
-dakotaheight=4
-dakotacrescentheight=5
-eunosheight=6
-eunospayaheight=7
-fortcanningheight=8
defi-playground:
image: ghcr.io/defich/playground:0.13.3
depends_on:
- defi-blockchain
ports:
- "3002:3000"
environment:
PLAYGROUND_DEFID_URL: http://playground:playground@defi-blockchain:19554
labels:
- "traefik.http.services.playground.loadbalancer.server.port=3000"
- "traefik.http.routers.playground.rule=PathPrefix(`/v0/playground/`)"
- "traefik.http.routers.playground.entrypoints=web"
defi-whale:
image: ghcr.io/defich/whale:0.18.2
depends_on:
- defi-blockchain
ports:
- "3001:3000"
environment:
WHALE_DEFID_URL: http://playground:playground@defi-blockchain:19554
WHALE_DATABASE_PROVIDER: level
WHALE_DATABASE_LEVEL_LOCATION: .level/index
WHALE_NETWORK: regtest
WHALE_VERSION: v0
labels:
- "traefik.http.services.whale.loadbalancer.server.port=3000"
- "traefik.http.routers.whale.rule=PathPrefix(`/v0/regtest/`)"
- "traefik.http.routers.whale.entrypoints=web"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/576353201/wallet.git
git@gitee.com:576353201/wallet.git
576353201
wallet
wallet
main

搜索帮助