cf039d9562
* Add a fixturenet-payments stack * Export the WebSocket port in fixturenet-eth-geth service * Add container to run a go-nitro node * Add container to deploy Nitro contracts * Read contract addresses from a volume when running the Nitro node * Add a service for Nitro reverse payment proxy * Expose payment proxy endpoint to be accessible from host * Map nitro node messaging and payment proxy ports to host * Use container to deploy Nitro contracts in mobymask-v3 stack * Use a common contract deployment script from mobymask-v3 stack * Add MobyMask contract deployment and watcher services * Fixes for contract deployment and watcher scripts * Add a container and service for mobymask-snap * Add MobyMask app service * Add container and service for a ponder app * Fix ponder setup and update instructions * Handle review comments * Use enablepaidrpcmethods flag in reverse payment proxy server * Update go-nitro branch * Fixes for mobymask-v3 stack --------- Co-authored-by: Nabarun <nabarun@deepstacksoft.com>
24 lines
810 B
YAML
24 lines
810 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
# Optionally deploys the Nitro contracts
|
|
nitro-contracts:
|
|
image: cerc/nitro-contracts:local
|
|
restart: on-failure
|
|
environment:
|
|
CERC_SCRIPT_DEBUG: ${CERC_SCRIPT_DEBUG}
|
|
CERC_ETH_RPC_ENDPOINT: ${CERC_ETH_RPC_ENDPOINT:-http://fixturenet-eth-geth-1:8545}
|
|
CERC_PRIVATE_KEY_DEPLOYER: ${CERC_PRIVATE_KEY_DEPLOYER:-0x888814df89c4358d7ddb3fa4b0213e7331239a80e1f013eaa7b2deca2a41a218}
|
|
CERC_NA_ADDRESS: ${CERC_NA_ADDRESS}
|
|
CERC_VPA_ADDRESS: ${CERC_VPA_ADDRESS}
|
|
CERC_CA_ADDRESS: ${CERC_CA_ADDRESS}
|
|
volumes:
|
|
- ../config/nitro-contracts/deploy.sh:/app/deploy.sh
|
|
- nitro_deployment:/app/deployment
|
|
command: ["bash", "-c", "/app/deploy.sh"]
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
|
|
volumes:
|
|
nitro_deployment:
|