We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29af3ff commit 0ac3336Copy full SHA for 0ac3336
1 file changed
docker-compose.yml
@@ -2,10 +2,11 @@ services:
2
geth: # this is Optimism's geth client
3
build: .
4
ports:
5
- - 8545:8545
6
- - 8546:8546
7
- - 30303:30303
8
- - 7301:6060 # metrics
+ - 8545:8545 # RPC
+ - 8546:8546 # websocket
+ - 30303:30303 # P2P TCP (currently unused)
+ - 30303:30303/udp # P2P UDP (currently unused)
9
+ - 7301:6060 # metrics
10
command: [ "sh", "./geth-entrypoint" ]
11
env_file:
12
- .env.goerli
@@ -14,10 +15,11 @@ services:
14
15
depends_on:
16
- geth
17
- - 7545:8545
18
- - 9222:9222
19
- - 7300:7300 # metrics
20
- - 6060:6060
+ - 7545:8545 # RPC
+ - 9222:9222 # P2P TCP
+ - 9222:9222/udp # P2P UDP
21
+ - 7300:7300 # metrics
22
+ - 6060:6060 # pprof
23
command: [ "sh", "./op-node-entrypoint" ]
24
25
0 commit comments