Update docker-compose.yml

This commit is contained in:
kaiyu 2023-04-04 14:30:27 +08:00 committed by GitHub
parent b4f7c45a3a
commit a1690a98c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,20 @@
version: "3"
services:
bnk-node:
image: boolnetwork/bnk-node:latest
ports:
- "9933:9933"
- "9944:9944"
- "30333:30333"
environment:
RUST_LOG: info
volumes:
- ./node-data:/data"
command: |
--unsafe-rpc-external
--unsafe-ws-external
--rpc-cors all
bnk-database:
image: boolnetwork/bnk-database:latest
network_mode: "host"
@ -31,4 +46,4 @@ services:
- /dev/sgx/enclave
- /dev/sgx/provision
depends_on:
- bnk-watcher
- bnk-watcher