forked from charx0r/POKT_DOKT
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy patharbitrum-sepolia-fullnode-pebble.yml
42 lines (40 loc) · 1.83 KB
/
arbitrum-sepolia-fullnode-pebble.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
version: '3.1'
services:
arbitrum-sepolia-fullnode:
image: 'offchainlabs/nitro-node:${NITRO_VERSION:-v3.2.0-f847be0}'
stop_grace_period: 3m
user: root
volumes:
- 'arbitrum-sepolia-fullnode_data:/arbitrum-node'
- './tmp/arbitrum-sepolia-fullnode:/tmp'
expose:
- 8547 # http + ws
command:
- --init.latest=pruned
- --chain.name=sepolia-rollup
- --chain.id=421614
- --node.staker.enable=false
- --persistent.chain=/arbitrum-node/data/
- --persistent.global-config=/arbitrum-node/
- --parent-chain.connection.url=${ARBITRUM_SEPOLIA_URL}
- --parent-chain.blob-client.beacon-url=${ARBITRUM_SEPOLIA_BEACON_URL}
- --http.api=net,web3,eth,debug
- --http.corsdomain=*
- --http.addr=0.0.0.0
- --http.vhosts=*
- --ws.port=8547
- --ws.addr=0.0.0.0
- --ws.origins=*
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.middlewares.arbitrum-sepolia-stripprefix.stripprefix.prefixes=/arbitrum-sepolia-fullnode"
- "traefik.http.services.arbitrum-sepolia.loadbalancer.server.port=8547"
- "traefik.http.routers.arbitrum-sepolia.entrypoints=websecure"
- "traefik.http.routers.arbitrum-sepolia.tls.certresolver=myresolver"
- "traefik.http.routers.arbitrum-sepolia.rule=Host(`$DOMAIN`) && PathPrefix(`/arbitrum-sepolia-fullnode`)"
- "traefik.http.routers.arbitrum-sepolia.middlewares=arbitrum-sepolia-stripprefix, ipwhitelist"
networks:
- chains
volumes:
arbitrum-sepolia-fullnode_data: