| <!--- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License |
| --> |
| |
| ####Docker |
| Docker is an open-source project that automates the deployment of applications inside software |
| containers, by providing an additional layer of abstraction and automation of operating-system-level |
| virtualization on Linux. |
| <https://www.docker.com/what-docker> |
| |
| ####Dockerfiles for Fedora, Ubuntu and Centos |
| The docker files, Dockerfile-fedora, Dockerfile-ubuntu, and Dockerfile-centos provide quick start |
| docker containers with a running instance of qpid dispatch router on the various platforms. |
| |
| The dockerfiles follow these steps before launching the dispatch router |
| |
| * Downloads all the specific dependencies needed for building apache qpid-proton. |
| * Downloads the source code of qpid-proton to /main/qpid-proton |
| * Builds and installs qpid-proton using gcc. |
| * Downloads the source code of qpid-dispatch to /main/qpid-dispatch. |
| * Builds and installs qpid-dispatch using gcc. |
| * Launches qpid-dispatch router |
| |
| ####Building and running Dockerfiles |
| * To build the fedora docker file |
| * sudo docker build -t docker-image-name --file=Dockerfile-fedora . (substitute docker-image-name with your own image name) |
| * To build the ubuntu docker file |
| * sudo docker build -t docker-image-name --file=Dockerfile-ubuntu . (substitute docker-image-name with your own image name) |
| * To build the centos docker file |
| * sudo docker build -t docker-image-name --file=Dockerfile-centos . (substitute docker-image-name with your own image name) |
| |
| * To run the fedora/ubuntu/centos docker image |
| * sudo docker run -i -t docker-image-name (substitute docker-image-name with your own image name) |
| * After the docker run command is invoked, execute the *sudo docker ps* command to check if your container name shows up in the list of docker processes. |
| |
| ####Running unit tests |
| Uncomment the line *RUN ctest -VV* to run the dispatch unit and system tests. |
| |
| ####Note |
| These dockerfiles are provided for developers to quickly get started with the dispatch router and are not intended for use in production environments. |
| |