Advertisement
v0yager

Untitled

Oct 7th, 2022
503
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. version: "3.7"
  2. services:
  3.  
  4.   nethermind:
  5.     hostname: nethermind
  6.     container_name: nethermind
  7.     image: nethermind/nethermind:latest
  8.     restart: always
  9.     stop_grace_period: 1m
  10.     ports:
  11.       - "30303:30303/tcp"
  12.       - "30303:30303/udp"
  13.     expose:
  14.       - "8545:8545"
  15.     volumes:
  16.       - /home/gnos/nethermind/nethermind_db:/nethermind/nethermind_db
  17.       - /home/gnos/nethermind/keystore:/nethermind/keystore
  18.       - /home/gnos/nethermind/logs:/nethermind/logs
  19.       - /home/gnos/nethermind/configs:/nethermind/configs:ro
  20.       - /etc/timezone:/etc/timezone:ro
  21.       - /etc/localtime:/etc/localtime:ro
  22.     command:
  23.       - --config=xdai_archive
  24.       - --datadir=/nethermind
  25.       - --JsonRpc.Enabled=true
  26.       - --JsonRpc.EnabledModules=Eth,AccountAbstraction,Subscribe,TxPool,Web3,Personal,Proof,Net,Parity,Health,Trace
  27.       - --JsonRpc.Host=M.y.I.P.
  28.       - --JsonRpc.Port=8545
  29.     ulimits:
  30.       nofile:
  31.         soft: 1000000
  32.         hard: 1000000
  33.     logging:
  34.       options:
  35.         max-size: "1000m"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement