Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

As you can see above, Odysseus started. We also exposed one port the the outside: port 9669 is forwarded to port 9700, wherefore we should be able to see the WebService in our host machine. Just open http://localhost:9700/odysseus?wsdl in a browser on your host machine.You should be able to see an XML-file describing the Odysseus WebService.

Some Docker management

  • See all your running containers: "sudo docker ps"
  • See all your started containers (including non-running containers): "sudo docker ps -a"
  • Stop all running containers: "sudo docker stop $(sudo docker ps -a -q)
  • Delete all started running containers: "sudo docker rm $(sudo docker ps -a -q)