-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a7ec633
commit 8ea5c02
Showing
11 changed files
with
201 additions
and
118 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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,28 +1,55 @@ | ||
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: | ||
# Running with Conduit. | ||
- ${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: | ||
- "7303:7303" | ||
- "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: | ||
- "3002:3002" | ||
|
||
# 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: | ||
- "7302:7302" |
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
Oops, something went wrong.