From my Docker container I forward the port 8545
as below
ports:
- '127.0.0.1:8545:8545'
And after run the container, if I run lsof -i :8545
it shows me two processes with the same PID.
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
vpnkit 6576 Admin 27u IPv4 0xfdda6e6d5013cf77 0t0 TCP localhost:8545 (LISTEN)
vpnkit 6576 Admin 28u IPv6 0xfdda6e6d4509106f 0t0 TCP localhost:8545 (LISTEN)
Why there are two processes running?