-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-dev.yml
More file actions
28 lines (27 loc) · 984 Bytes
/
docker-compose-dev.yml
File metadata and controls
28 lines (27 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
services:
test-runner:
build:
context: .
dockerfile: Dockerfile.test-runner
container_name: test-runner
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /var/lib/docker/volumes:/var/lib/docker/volumes
environment:
- LOG_LEVEL=DEBUG
- IPFS_GATEWAY_URL=http://ipfs.dappnode:8080
- IPFS_HASH=QmSfPFSauovbMzEcvf2a2csoHtfqpViShwEYpuX3fPR8zv
- EXECUTION_CLIENT=${EXECUTION_CLIENT:-geth}
- CONSENSUS_CLIENT=${CONSENSUS_CLIENT:-nimbus}
# GitHub integration (optional - for PR commenting)
- GITHUB_TOKEN=${GITHUB_TOKEN:-}
- GITHUB_REPOSITORY=${GITHUB_REPOSITORY:-}
- GITHUB_PR_NUMBER=${GITHUB_PR_NUMBER:-}
- GITHUB_RUN_ID=${GITHUB_RUN_ID:-}
- GITHUB_SERVER_URL=${GITHUB_SERVER_URL:-https://github.com}
# command: ["--ipfs-gateway-url", "${IPFS_GATEWAY_URL}", "--ipfs-hash", "${IPFS_HASH}"]
networks:
- dncore_network
networks:
dncore_network:
external: true