I want forwarding port 5660[public] to 28967[private192.168.1.50]

mission clear for this problem.

but i have question about port forwarding
i want forwarding port 5660[public] to 28967[private192.168.1.50]
my config file is below. is it correct?

docker run -d --restart unless-stopped -p 5660:28967
-p 192.168.1.50:14002:14002
-e WALLET=“0xdef556dcd41874cf65a92048ecc700f6cacd6606”
-e EMAIL="noknan89@gmail.com"
-e ADDRESS=“blackpink.thddns.net:5660” \


and on isp router i forwarding port 28967[LAN] to 5660[WAN]
is it correct?

No.
You published your node on 5660 public port, so you should forward the 5660 to your host with a docker.

Also, the forwarding is working in a reverse way - from WAN to LAN

You can forward the 5660 to the 28967 of your host with docker, if you want, but in such case in the docker run command you should change the port mapping too: -p 28967:28967