File tree 9 files changed +11
-45
lines changed
9 files changed +11
-45
lines changed Original file line number Diff line number Diff line change 1
- GETH_HOST_DATA_DIR = ./geth-data
2
- RETH_HOST_DATA_DIR = ./reth-data
1
+ HOST_DATA_DIR = ./geth-data
2
+ CLIENT = geth
Original file line number Diff line number Diff line change 42
42
uses : docker/build-push-action@v4
43
43
with :
44
44
context : .
45
- file : Dockerfile. geth
45
+ file : geth/Dockerfile
46
46
push : true
47
47
tags : ${{ steps.meta.outputs.tags }}
48
48
labels : ${{ steps.meta.outputs.labels }}
81
81
uses : docker/build-push-action@v4
82
82
with :
83
83
context : .
84
- file : Dockerfile. reth
84
+ file : reth/Dockerfile
85
85
push : true
86
86
tags : ${{ steps.meta.outputs.tags }}
87
87
labels : ${{ steps.meta.outputs.labels }}
Original file line number Diff line number Diff line change 20
20
uses : docker/build-push-action@v4
21
21
with :
22
22
context : .
23
- file : Dockerfile. geth
23
+ file : geth/Dockerfile
24
24
push : false
25
25
platforms : ${{ matrix.arch }}
26
26
reth :
43
43
uses : docker/build-push-action@v4
44
44
with :
45
45
context : .
46
- file : Dockerfile. reth
46
+ file : reth/Dockerfile
47
47
push : false
48
48
build-args : |
49
49
FEATURES=${{ matrix.features }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -2,22 +2,22 @@ services:
2
2
execution :
3
3
build :
4
4
context : .
5
- dockerfile : Dockerfile.geth
5
+ dockerfile : ${CLIENT}/ Dockerfile
6
6
ports :
7
7
- " 8545:8545" # RPC
8
8
- " 8546:8546" # websocket
9
9
- " 7301:6060" # metrics
10
10
command : [ "bash", "./execution-entrypoint" ]
11
11
volumes :
12
- - ${GETH_HOST_DATA_DIR }:/data
12
+ - ${HOST_DATA_DIR }:/data
13
13
env_file :
14
14
# select your network here:
15
15
# - .env.sepolia
16
16
# - .env.mainnet
17
17
node :
18
18
build :
19
19
context : .
20
- dockerfile : Dockerfile.geth
20
+ dockerfile : ${CLIENT}/ Dockerfile
21
21
depends_on :
22
22
- execution
23
23
ports :
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ WORKDIR /app
42
42
COPY --from=op /app/op-node/bin/op-node ./
43
43
COPY --from=geth /app/build/bin/geth ./
44
44
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
45
- COPY geth-entrypoint ./execution-entrypoint
45
+ COPY geth/geth -entrypoint ./execution-entrypoint
46
46
COPY op-node-entrypoint .
47
47
48
48
CMD ["/usr/bin/supervisord" ]
File renamed without changes.
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ WORKDIR /app
40
40
COPY --from=op /app/op-node/bin/op-node ./
41
41
COPY --from=reth /app/target/maxperf/op-reth ./
42
42
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
43
- COPY reth-entrypoint ./execution-entrypoint
43
+ COPY ./reth/ reth-entrypoint ./execution-entrypoint
44
44
COPY op-node-entrypoint .
45
45
46
46
CMD ["/usr/bin/supervisord" ]
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ echo "$OP_NODE_L2_ENGINE_AUTH_RAW" > "$OP_NODE_L2_ENGINE_AUTH"
17
17
18
18
exec ./op-reth node \
19
19
-vvv \
20
- --config /app/reth.toml \
21
20
--datadir=" $RETH_DATA_DIR " \
22
21
--log.stdout.format log-fmt \
23
22
--ws \
You can’t perform that action at this time.
0 commit comments