Skip to content

Commit 498b37b

Browse files
committed
Add docker files
1 parent 146ff4c commit 498b37b

File tree

3 files changed

+146
-0
lines changed

3 files changed

+146
-0
lines changed

.env.sample

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Layer1 settings
2+
L1_ETH_RPC_HTTP=https://rpc.{ mainnet or testnet }.oasys.games/
3+
4+
# Layer2 settings
5+
OP_CHAIN_ID=<L2 Chain ID>
6+
OP_L2OO_ADDR=<Address of the L2OutputOracle>
7+
8+
# Wallets
9+
## `op-proposer` uses for state submission to the `L2OutputOracle` contract on L1
10+
OP_PROPOSER_ADDR=
11+
OP_PROPOSER_KEY=
12+
13+
## `op-batcher` uses for batch submission to the `OP_BATCH_INBOX_ADDR` on L1
14+
OP_BATCHER_ADDR=
15+
OP_BATCHER_KEY=
16+
17+
## `message-relayer` uses for messaging from L2 to L1.
18+
RELAYER_ADDR=
19+
RELAYER_KEY=
20+
21+
# Container published ports
22+
## op-geth
23+
OP_ETH_RPC_HTTP_PORT=8545
24+
OP_ETH_RPC_WS_PORT=8546
25+
26+
## op-node
27+
OP_ROLLUP_RPC_PORT=8547
28+
29+
# internal endpointss
30+
OP_ETH_RPC_HTTP=http://op-geth:8545
31+
OP_ENGINE_RPC=ws://op-geth:8551
32+
OP_ROLLUP_RPC=http://op-node:8547

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.env*
2+
.vscode
3+
.DS_Store
4+
5+
/data
6+
/docker-compose.override.yml
7+
8+
!.env.sample

docker-compose.yml

+106
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
version: '3'
2+
3+
x-resident: &resident
4+
restart: unless-stopped
5+
user: nobody
6+
logging:
7+
driver: json-file
8+
options:
9+
max-size: 128m
10+
max-file: 4
11+
12+
services:
13+
op-geth:
14+
<<: *resident
15+
image: ghcr.io/oasysgames/oasys-op-geth:latest
16+
entrypoint: geth
17+
command: >
18+
--http
19+
--http.corsdomain='*'
20+
--http.vhosts='*'
21+
--http.addr=0.0.0.0
22+
--http.port=8545
23+
--http.api=web3,eth,net,engine
24+
--ws
25+
--ws.origins='*'
26+
--ws.addr=0.0.0.0
27+
--ws.port=8546
28+
--ws.api=debug,eth,net,engine
29+
--syncmode=full
30+
--gcmode=archive
31+
--cache=4096
32+
--nodiscover
33+
--maxpeers=0
34+
--networkid=$OP_CHAIN_ID
35+
--authrpc.vhosts='*'
36+
--authrpc.addr=0.0.0.0
37+
--authrpc.port=8551
38+
--authrpc.jwtsecret=/assets/jwt.txt
39+
--txpool.pricelimit=0
40+
volumes:
41+
- ./assets:/assets:ro
42+
- ./data/op-geth:/home/nobody/.ethereum
43+
ports:
44+
- $OP_ETH_RPC_HTTP_PORT:8545/tcp
45+
- $OP_ETH_RPC_WS_PORT:8546/tcp
46+
47+
op-node:
48+
<<: *resident
49+
image: ghcr.io/oasysgames/oasys-opstack/op-node:latest
50+
entrypoint: op-node
51+
command: >
52+
--l1=$L1_ETH_RPC_HTTP
53+
--l1.rpckind=basic
54+
--l1.epoch-poll-interval=0
55+
--l1.http-poll-interval=15s
56+
--l2=$OP_ENGINE_RPC
57+
--l2.jwt-secret=/assets/jwt.txt
58+
--rollup.config=/data/rollup.json
59+
--sequencer.enabled
60+
--sequencer.l1-confs=5
61+
--verifier.l1-confs=5
62+
--rpc.enable-admin
63+
--rpc.addr=0.0.0.0
64+
--rpc.port=8547
65+
--rpc.admin-state=/data/admin-state
66+
--snapshotlog.file=/data/snapshotlog
67+
--p2p.disable
68+
volumes:
69+
- ./assets:/assets:ro
70+
- ./data/op-node:/data
71+
links:
72+
- op-geth
73+
74+
op-batcher:
75+
<<: *resident
76+
image: ghcr.io/oasysgames/oasys-opstack/op-batcher:latest
77+
entrypoint: op-batcher
78+
command: >
79+
--l1-eth-rpc=$L1_ETH_RPC_HTTP
80+
--l2-eth-rpc=$OP_ETH_RPC_HTTP
81+
--rollup-rpc=$OP_ROLLUP_RPC
82+
--private-key=$OP_BATCHER_KEY
83+
--num-confirmations=5
84+
--resubmission-timeout=60s
85+
--txmgr.receipt-query-interval=15s
86+
links:
87+
- op-geth
88+
- op-node
89+
90+
op-proposer:
91+
<<: *resident
92+
image: ghcr.io/oasysgames/oasys-opstack/op-proposer:latest
93+
entrypoint: op-proposer
94+
command: >
95+
--l1-eth-rpc=$L1_ETH_RPC_HTTP
96+
--rollup-rpc=$OP_ROLLUP_RPC
97+
--l2oo-address=$OP_L2OO_ADDR
98+
--private-key=$OP_PROPOSER_KEY
99+
--allow-non-finalized=true
100+
--num-confirmations=5
101+
--resubmission-timeout=60s
102+
--txmgr.receipt-query-interval=15s
103+
links:
104+
- op-node
105+
106+
# message-relayer: TODO

0 commit comments

Comments
 (0)