diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 945c61d..699baf5 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -1,31 +1,89 @@ -rabbitmq -========== -This provides a Clear Linux* rabbitmq-server container +# Clear Linux* OS `rabbitmq` container image -Build ------ -``` -docker build -t clearlinux/rabbitmq . -``` + +## What is this image? -Or just pull it from Dockerhub ---------------------------- -``` -docker pull clearlinux/rabbitmq -``` +`clearlinux/rabbitmq` is a Docker image with `rabbitmq` running on top of the +[official clearlinux base image](https://hub.docker.com/_/clearlinux). -Run rabbitmq-server instance ------------------------ -``` -docker run --rm -it --hostname my-rabbit --name some-rabbit clearlinux/rabbitmq -``` + +> [rabbitmq](https://en.wikipedia.org/wiki/RabbitMQ) is an open-source message-broker software +> originally implemented the Advanced Message Queuing Protocol (AMQP) and has since been extended with a plug-in architecture +> to support Streaming Text Oriented Messaging Protocol (STOMP), Message Queuing Telemetry Transport (MQTT), and other protocols. -Details of how-to ---------------------- -- Please refer to the docker official rabbitmq image [page](https://hub.docker.com/_/rabbitmq). +For other Clear Linux* OS +based container images, see: https://hub.docker.com/u/clearlinux -Extra Build ARGs ----------------- -- ``swupd_args`` Specifies [SWUPD](https://github.com/clearlinux/swupd-client/blob/master/docs/swupd.1.rst#options) flags +## Why use a clearlinux based image? -Default build args in Docker are on: https://docs.docker.com/engine/reference/builder/#arg + +> [Clear Linux* OS](https://clearlinux.org/) is an open source, rolling release +> Linux distribution optimized for performance and security, from the Cloud to +> the Edge, designed for customization, and manageability. + +Clear Linux* OS based container images use: +* Optimized libraries that are compiled with latest compiler versions and + flags. +* Software packages that follow upstream source closely and update frequently. +* An aggressive security model and best practices for CVE patching. +* A multi-staged build approach to keep a reduced container image size. +* The same container syntax as the official images to make getting started + easy. + +To learn more about Clear Linux* OS, visit: https://clearlinux.org. + + +## Deployment: + +### Deploy with Docker +The easiest way to get started with this image is by simply pulling it from +Docker Hub. + +*Note: This container is compatible with the [official wordpress +image](https://hub.docker.com/_/rabbitmq). + +1. Pull the image from Docker Hub: + ``` + docker pull clearlinux/rabbitmq + ``` + +2. Start a rabbitmq-server instance: + ``` + docker run --rm -it --hostname my-rabbit --name some-rabbit clearlinux/rabbitmq + ``` + + +## Build and modify: +The Dockerfiles for all Clear Linux* OS based container images are available at +https://github.com/clearlinux/dockerfiles. These can be used to build and +modify the container images. + +1. Clone the clearlinux/dockerfiles repository. + ``` + git clone https://github.com/clearlinux/dockerfiles.git + ``` + +2. Change to the directory of the application: + ``` + cd rabbitmq/ + ``` + +3. Build the container image: + ``` + docker build -t clearlinux/rabbitmq . + ``` + + Refer to the Docker documentation for [default build + arguments](https://docs.docker.com/engine/reference/builder/#arg). + Additionally: + + - `swupd_args` - specifies arguments to pass to the Clear Linux* OS software + manager. See the [swupd man + pages](https://github.com/clearlinux/swupd-client/blob/master/docs/swupd.1.rst#options) + for more information. + + +## Licenses + +All licenses for the Clear Linux* Project and distributed software can be found +at https://clearlinux.org/terms-and-policies