mining-scripts/docker-compose.yml
2024-03-05 18:31:14 +08:00

20 lines
779 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

version: "3"
services:
bnk-occlum-keyring:
image: boolnetwork/bnk-occlum-keyring-epid:v0.5.2 #镜像不同配置文件中attestation_style参数数值不同
# image: boolnetwork/bnk-occlum-keyring-dcap:pre-release
restart: always
network_mode: "host"
# ports:
# - "8720:8720"
# - "38700:38700"
environment:
RUST_LOG: info
volumes:
- ./configs:/configs
- ./data:/root/occlum_instance/data
devices:
- /dev/sgx/enclave:/dev/sgx/enclave
- /dev/sgx/provision:/dev/sgx/provision
command: bash -c 'cp /configs/keyring.toml /root/occlum_instance; source /root/.bashrc; cd /root/occlum_instance; occlum print mrsigner; occlum print mrenclave; occlum run /bin/bnk-watcher /host/keyring.toml'