Running multiple servers inside one container (solved)

Good day,

Is it possible to run multiple RoboCup servers inside the same docker container? I am trying to run more than one instance of the server for faster training. One thing I did was change the server ports ’ -server::port=6000 -server::coach_port=6001 so that each server instance has unique ports.

When I initiate 2 servers the first one runs perfectly. However, the second instance outputs ‘Error initializing sockets: port=6002. Address already in use’ even though I am assigning server::port=6100 -server::coach_port=6101 for the second server. Is there an I can fix this issue?

Thank you,
Dries

I solved my problem thank you. I also needed to set the -server::olcoach_port=6002 flag.