frostfs-dev-env/services/morph_chain/docker-compose.yml
Nikita Zinkevich 636be7352e
All checks were successful
DCO action / DCO (pull_request) Successful in 45s
[#84] Make targets for issuing credentials
Signed-off-by: Nikita Zinkevich <n.zinkevich@yadro.com>
2024-10-17 12:37:26 +03:00

32 lines
823 B
YAML

---
services:
frostfs_morph_chain:
image: ${NEOGO_IMAGE}:${NEOGO_VERSION}
container_name: morph_chain
command: ["node", "--config-path", "/config", "--privnet", "--debug"]
domainname: ${LOCAL_DOMAIN}
hostname: morph-chain
networks:
chain_int:
internet:
ipv4_address: ${IPV4_PREFIX}.90
stop_signal: SIGKILL
env_file: [ ".int_test.env" ]
volumes:
- ./protocol.privnet.yml:/config/protocol.privnet.yml
- ./node-wallet.json:/wallets/node-wallet.json
- ./config.yml:/wallets/config.yml
- ./../../vendor/hosts:/etc/hosts
- ./../../wallets/wallet.json:/wallets/wallet.json
- ./../s3_gate/wallet.json:/wallets/s3-wallet.json
- chains:/chains
networks:
chain_int:
internet:
external: true
name: basenet_internet
volumes:
chains: