-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
only submitted agg proof with greatest distance
- Loading branch information
1 parent
ad64ff7
commit 7e00ba8
Showing
2 changed files
with
73 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,55 @@ | ||
services: | ||
w | ||
# OP Succinct Server | ||
op-succinct-server-bob-testnet: | ||
build: | ||
context: . | ||
dockerfile: ./proposer/succinct/Dockerfile | ||
env_file: | ||
- ${ENV_FILE:-.env.bobtestnet} | ||
restart: unless-stopped | ||
ports: | ||
- "3001:3001" | ||
|
||
# OP Succinct Proposer | ||
op-succinct-proposer-bob-testnet: | ||
build: | ||
context: . | ||
dockerfile: ./proposer/op/Dockerfile.op_proposer | ||
env_file: | ||
# Running with Conduit. | ||
- ${ENV_FILE:-.env.bobtestnet} | ||
restart: unless-stopped | ||
depends_on: | ||
- op-succinct-server-bob-testnet | ||
volumes: | ||
- ./db:/usr/local/bin/dbdata | ||
# The metrics port is the default port for the OP Proposer. | ||
ports: | ||
- "7301:7301" | ||
# OP Succinct Server | ||
op-succinct-server-conduit-10s: | ||
build: | ||
context: . | ||
dockerfile: ./proposer/succinct/Dockerfile | ||
env_file: | ||
- ${ENV_FILE:-.env.conduit} | ||
restart: unless-stopped | ||
ports: | ||
- "3005:3005" | ||
|
||
# OP Succinct Proposer | ||
op-succinct-proposer-conduit-10s: | ||
build: | ||
context: . | ||
dockerfile: ./proposer/op/Dockerfile.op_proposer | ||
env_file: | ||
# Running with Conduit. | ||
- ${ENV_FILE:-.env.conduit} | ||
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters