cycles-quartz/docker/docker-compose.yml
Elena San Miguel 9ecc02f200
Run transfers app E2E tests in an Action, and backend with docker compose (#203)
Co-authored-by: Juan Enrique Alcaraz <juanenrisley@gmail.com>
2024-10-01 16:13:39 -04:00

32 lines
551 B
YAML

name: "transfers"
volumes:
wasmd_data:
services:
node:
container_name: wasmd
build: "./wasmd"
ports:
- "26657:26657"
- "26656:26656"
- "1317:1317"
network_mode: host
volumes:
- wasmd_data:/root/.wasmd
enclave:
container_name: quartz-cli-transfers
environment:
DOCKER_BUILDKIT: 1
build:
context: ".."
dockerfile: "./crates/cli/Dockerfile"
depends_on:
- node
ports:
- "11090:11090"
network_mode: host
volumes:
- wasmd_data:/root/.wasmd