Skip to content

Commit

Permalink
feat: conduit deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed Dec 17, 2024
1 parent 4afd2cd commit 7fe15e0
Showing 1 changed file with 33 additions and 7 deletions.
40 changes: 33 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,53 @@
services:
# OP Succinct Server
op-succinct-server:
op-succinct-server-bob-testnet:
build:
context: .
dockerfile: ./proposer/succinct/Dockerfile
env_file:
- ${ENV_FILE:-.env}
- ${ENV_FILE:-.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_FILE:-.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"
- "7301:7301"
# OP Succinct Server
op-succinct-server-conduit-10s:
build:
context: .
dockerfile: ./proposer/succinct/Dockerfile
env_file:
- ${ENV_FILE:-.env.conduit10s}
restart: unless-stopped
ports:
- "3005:3005"

# OP Succinct Proposer
op-succinct-proposer-conduit-10s:
build:
context: .
dockerfile: ./proposer/op/Dockerfile.op_proposer
env_file:
- ${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:
- "7305:7305"

0 comments on commit 7fe15e0

Please sign in to comment.