Skip to content

Commit

Permalink
feat: bob-testnet and conduit-10s
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed Dec 1, 2024
1 parent ef62b06 commit d9f2e91
Showing 1 changed file with 33 additions and 8 deletions.
41 changes: 33 additions & 8 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,52 @@
services:
# OP Succinct Server
op-succinct-server:
# BoB Testnet
op-succinct-server-bob-testnet:
build:
context: .
dockerfile: ./proposer/succinct/Dockerfile
env_file:
- ${ENV_FILE:-.env}
- .env.bobtestnet
restart: unless-stopped
ports:
- "3000:3000"
- "3001:3001"

# OP Succinct Proposer
op-succinct-proposer:
op-succinct-proposer-bob-testnet:
build:
context: .
dockerfile: ./proposer/op/Dockerfile.op_proposer
env_file:
- ${ENV_FILE:-.env}
- .env.bobtestnet
restart: unless-stopped
depends_on:
- op-succinct-server
- op-succinct-server-bob-testnet
volumes:
- ./db:/usr/local/bin/dbdata
# The metrics port is the default port for the OP Proposer.
ports:
- "7300:7300"

# Conduit 10s
op-succinct-server-conduit-10s:
build:
context: .
dockerfile: ./proposer/succinct/Dockerfile
env_file:
- .env.conduit10s
restart: unless-stopped
ports:
- "3002:3002"

op-succinct-proposer-conduit-10s:
build:
context: .
dockerfile: ./proposer/op/Dockerfile.op_proposer
env_file:
- .env.conduit10s
restart: unless-stopped
depends_on:
- op-succinct-server-conduit-10s
volumes:
- ./db:/usr/local/bin/dbdata
# The metrics port is the default port for the OP Proposer.
ports:
- "7301:7301"

0 comments on commit d9f2e91

Please sign in to comment.