Versions Compared

Key

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

...

       2. Click on the icon for the Quickstart Terminal window to launch it from the Application/Docker folder.  Verify the installation by running the hello-world container.

        $docker - run hello-world

            If Quickstart Terminal startup script did not configure the shell correctly, you may get message “docker: cannot connect to the Docker daemon. Is the docker daemon running on this host?.”

...

The template-converter directory consists of one file (docker-compose.yml), and one sub-directory, example-server , with two files: Dockerfile and ImageMagick_convert.sh.

...

  • Make sure the permission for ImageMagick_convert.sh is 755.

 $cd chmod  $chmod 755 ImageMagick_convert.sh

  • Build and launch the example software server with the converter

 $docker build –t -t example-server .

 $docker run --rm -t -i --link polyglotimageconverter_rabbitmq_1:rabbitmq example-server

...