feat: publish more docker ports in localnet script (#12788)

This commit is contained in:
Justin Starry 2020-10-10 14:21:47 +08:00 committed by GitHub
parent 9478063b3d
commit f1bbe1cd84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 3 deletions

View File

@ -84,9 +84,21 @@ up)
--detach
--name solana-localnet
--rm
--publish 8899:8899
--publish 8900:8900
--publish 9900:9900
--publish 8001:8001/tcp # entrypoint
--publish 8899:8899/tcp # rpc http
--publish 8900:8900/tcp # rpc pubsub
--publish 8901:8901/tcp # (future) bank service
--publish 8902:8902/tcp # bank service
--publish 9900:9900/tcp # faucet
--publish 8000:8000/udp # tvu
--publish 8001:8001/udp # gossip
--publish 8002:8002/udp # tvu_forwards
--publish 8003:8003/udp # tpu
--publish 8004:8004/udp # tpu_forwards
--publish 8005:8005/udp # retransmit
--publish 8006:8006/udp # repair
--publish 8007:8007/udp # serve_repair
--publish 8008:8008/udp # broadcast
--tty
--ulimit "nofile=500000"
--env "RUST_LOG=$RUST_LOG"