Hello Fgodoy,
From what I see in the command you have entered, you are missing some things such as redirecting ports from the real machine to the docker port. Also you must link your Pandora FMS with yu MySQL, below is an example of how this command should be.
docker run -p XXXXX:YYYYY --link pandora-mysql:mysql -d pandorafms/pandorafms-server:latest
Where XXXXX is your real machine port and YYYYY is the Pandora FMS port (In this case, tentacle port by default is 41121). Also make sure that the ports are free to use, for this you can use the next command.
netstat -lptaua
Best regards
Diego
From what I see in the command you have entered, you are missing some things such as redirecting ports from the real machine to the docker port. Also you must link your Pandora FMS with yu MySQL, below is an example of how this command should be.
docker run -p XXXXX:YYYYY --link pandora-mysql:mysql -d pandorafms/pandorafms-server:latest
Where XXXXX is your real machine port and YYYYY is the Pandora FMS port (In this case, tentacle port by default is 41121). Also make sure that the ports are free to use, for this you can use the next command.
netstat -lptaua
Best regards
Diego