this image provides a ubuntu environment to quickly try out some software and then trow it away. 
it is not ment to be used for production in any way. the image is based on ubuntu:latest and 
contains a ssh daemon as well to allow ssh access from the host. it does not export any ports
as it should only be used locally on the host for testing. 

use bild.sh to build the image. this will include the current users authorized_keys as well as 
the user's public key to allow passwordless root access to the ubuntu machine.

to start a cuople containers and allow them to address eachother by container name run the image 
like so: 

  docker network create mypocnet
  docker run --net mypocnet --name pocsrv1 -tid ubuntu-test:latest
  docker run --net mypocnet --name pocsrv2 -tid ubuntu-test:latest

and so on
