Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
fb70e4cd
Unverified
Commit
fb70e4cd
authored
Oct 11, 2021
by
Ori Pomerantz
Committed by
Kelvin Fichter
Nov 10, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modified docker-compose-nobuild.yml to use the release candidate
parent
607f4735
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
43 deletions
+43
-43
docker-compose-nobuild.yml
ops/docker-compose-nobuild.yml
+43
-43
No files found.
ops/docker-compose-nobuild.yml
View file @
fb70e4cd
# TODO: Prefix all env vars with service name
# TODO: Allow specifing the image tag to use
version
:
"
3"
services
:
# base service builder
builder
:
image
:
ethereumoptimism/builder
#
builder:
#
image: ethereumoptimism/builder
# build:
# context: ..
# dockerfile: ./ops/docker/Dockerfile.monorepo
# this is a helper service used because there's no official hardhat image
l1_chain
:
image
:
ethereumoptimism/hardhat
...
...
@@ -19,11 +17,10 @@ services:
ports
:
# expose the service to the host for integration testing
-
${L1CHAIN_HTTP_PORT:-9545}:8545
deployer
:
depends_on
:
-
l1_chain
image
:
ethereumoptimism/deployer
image
:
ethereumoptimism/deployer
:prerelease-0.5.0-rc-1-4d0c922
# build:
# context: ..
# dockerfile: ./ops/docker/Dockerfile.deployer
...
...
@@ -34,19 +31,30 @@ services:
# these keys are hardhat's first 2 accounts, DO NOT use in production
DEPLOYER_PRIVATE_KEY
:
"
0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80"
SEQUENCER_PRIVATE_KEY
:
"
0x59c6995e998f97a5a0044966f0945389dc9e86dae88c7a8412f4603b6b78690d"
GAS_PRICE_ORACLE_OWNER
:
"
0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266"
# setting the whitelist owner to address(0) disables the whitelist
WHITELIST_OWNER
:
"
0x0000000000000000000000000000000000000000"
L1_FEE_WALLET_ADDRESS
:
"
0x391716d440c151c42cdf1c95c1d83a5427bca52c"
L2_CHAIN_ID
:
420
L2_BLOCK_GAS_LIMIT
:
11000000
BLOCK_SIGNER_ADDRESS
:
"
0x00000398232E2064F896018496b4b44b3D62751F"
GAS_PRICE_ORACLE_OVERHEAD
:
"
2750"
GAS_PRICE_ORACLE_SCALAR
:
"
1500000"
GAS_PRICE_ORACLE_L1_BASE_FEE
:
"
1"
GAS_PRICE_ORACLE_GAS_PRICE
:
"
1"
GAS_PRICE_ORACLE_DECIMALS
:
"
6"
# skip compilation when run in docker-compose, since the contracts
# were already compiled in the builder step
NO_COMPILE
:
1
ports
:
# expose the service to the host for getting the contract addrs
-
${DEPLOYER_PORT:-8080}:8081
dtl
:
depends_on
:
-
l1_chain
-
deployer
-
l2geth
image
:
ethereumoptimism/data-transport-layer
image
:
ethereumoptimism/data-transport-layer
:prerelease-0.5.0-rc-1-4d0c922
# build:
# context: ..
# dockerfile: ./ops/docker/Dockerfile.data-transport-layer
...
...
@@ -66,12 +74,11 @@ services:
DATA_TRANSPORT_LAYER__L2_CHAIN_ID
:
420
ports
:
-
${DTL_PORT:-7878}:7878
l2geth
:
depends_on
:
-
l1_chain
-
deployer
image
:
ethereumoptimism/l2geth
image
:
ethereumoptimism/l2geth
:prerelease-0.5.0-rc-1-4d0c922
# build:
# context: ..
# dockerfile: ./ops/docker/Dockerfile.geth
...
...
@@ -83,25 +90,25 @@ services:
ETH1_HTTP
:
http://l1_chain:8545
ROLLUP_TIMESTAMP_REFRESH
:
5s
ROLLUP_STATE_DUMP_PATH
:
http://deployer:8081/state-dump.latest.json
# used for getting the addresses
URL
:
http://deployer:8081/addresses.json
# connecting to the DTL
ROLLUP_CLIENT_HTTP
:
http://dtl:7878
ETH1_CTC_DEPLOYMENT_HEIGHT
:
8
RETRIES
:
60
# no need to keep this secret, only used internally to sign blocks
BLOCK_SIGNER_KEY
:
"
6587ae678cf4fc9a33000cdbf9f35226b71dcc6a4684a31203241f9bcfd55d27"
BLOCK_SIGNER_ADDRESS
:
"
0x00000398232E2064F896018496b4b44b3D62751F"
ports
:
-
${L2GETH_HTTP_PORT:-8545}:8545
-
${L2GETH_WS_PORT:-8546}:8546
relayer
:
depends_on
:
-
l1_chain
-
deployer
-
l2geth
image
:
ethereumoptimism/message-relayer
#
build:
#
context: ..
#
dockerfile: ./ops/docker/Dockerfile.message-relayer
image
:
ethereumoptimism/message-relayer
:prerelease-0.5.0-rc-1-4d0c922
#
build:
#
context: ..
#
dockerfile: ./ops/docker/Dockerfile.message-relayer
entrypoint
:
./relayer.sh
environment
:
L1_NODE_WEB3_URL
:
http://l1_chain:8545
...
...
@@ -112,16 +119,15 @@ services:
RETRIES
:
60
POLLING_INTERVAL
:
500
GET_LOGS_INTERVAL
:
500
batch_submitter
:
depends_on
:
-
l1_chain
-
deployer
-
l2geth
image
:
ethereumoptimism/batch-submitter
#
build:
#
context: ..
#
dockerfile: ./ops/docker/Dockerfile.batch-submitter
image
:
ethereumoptimism/batch-submitter
:prerelease-0.5.0-rc-1-4d0c922
#
build:
#
context: ..
#
dockerfile: ./ops/docker/Dockerfile.batch-submitter
entrypoint
:
./batches.sh
env_file
:
-
./envs/batches.env
...
...
@@ -130,25 +136,23 @@ services:
L2_NODE_WEB3_URL
:
http://l2geth:8545
URL
:
http://deployer:8081/addresses.json
SEQUENCER_PRIVATE_KEY
:
"
0x59c6995e998f97a5a0044966f0945389dc9e86dae88c7a8412f4603b6b78690d"
verifier
:
depends_on
:
-
l1_chain
-
deployer
-
dtl
image
:
ethereumoptimism/l2geth
image
:
ethereumoptimism/l2geth
:prerelease-0.5.0-rc-1-4d0c922
deploy
:
replicas
:
0
#
build:
#
context: ..
#
dockerfile: ./ops/docker/Dockerfile.geth
#
build:
#
context: ..
#
dockerfile: ./ops/docker/Dockerfile.geth
entrypoint
:
sh ./geth.sh
env_file
:
-
./envs/geth.env
environment
:
ETH1_HTTP
:
http://l1_chain:8545
ROLLUP_STATE_DUMP_PATH
:
http://deployer:8081/state-dump.latest.json
URL
:
http://deployer:8081/addresses.json
ROLLUP_CLIENT_HTTP
:
http://dtl:7878
ROLLUP_BACKEND
:
'
l1'
ETH1_CTC_DEPLOYMENT_HEIGHT
:
8
...
...
@@ -157,23 +161,21 @@ services:
ports
:
-
${VERIFIER_HTTP_PORT:-8547}:8545
-
${VERIFIER_WS_PORT:-8548}:8546
replica
:
depends_on
:
-
dtl
image
:
ethereumoptimism/l2geth
image
:
ethereumoptimism/l2geth
:prerelease-0.5.0-rc-1-4d0c922
deploy
:
replicas
:
0
#
build:
#
context: ..
#
dockerfile: ./ops/docker/Dockerfile.geth
#
build:
#
context: ..
#
dockerfile: ./ops/docker/Dockerfile.geth
entrypoint
:
sh ./geth.sh
env_file
:
-
./envs/geth.env
environment
:
ETH1_HTTP
:
http://l1_chain:8545
ROLLUP_STATE_DUMP_PATH
:
http://deployer:8081/state-dump.latest.json
URL
:
http://deployer:8081/addresses.json
ROLLUP_CLIENT_HTTP
:
http://dtl:7878
ROLLUP_BACKEND
:
'
l2'
ROLLUP_VERIFIER_ENABLE
:
'
true'
...
...
@@ -182,14 +184,13 @@ services:
ports
:
-
${L2GETH_HTTP_PORT:-8549}:8545
-
${L2GETH_WS_PORT:-8550}:8546
# integration_tests:
# image: ethereumoptimism/integration-tests
# deploy:
# replicas: 0
#
build:
#
context: ..
#
dockerfile: ./ops/docker/Dockerfile.integration-tests
#
build:
#
context: ..
#
dockerfile: ./ops/docker/Dockerfile.integration-tests
# entrypoint: ./integration-tests.sh
# environment:
# L1_URL: http://l1_chain:8545
...
...
@@ -197,14 +198,13 @@ services:
# URL: http://deployer:8081/addresses.json
# ENABLE_GAS_REPORT: 1
# NO_NETWORK: 1
gas_oracle
:
image
:
ethereumoptimism/gas-oracle
image
:
ethereumoptimism/gas-oracle
:prerelease-0.5.0-rc-1-4d0c922
deploy
:
replicas
:
0
#
build:
#
context: ..
#
dockerfile: ./ops/docker/Dockerfile.gas-oracle
#
build:
#
context: ..
#
dockerfile: ./ops/docker/Dockerfile.gas-oracle
entrypoint
:
./gas-oracle.sh
environment
:
GAS_PRICE_ORACLE_ETHEREUM_HTTP_URL
:
http://l2geth:8545
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment