• This repository has been archived on 26/Apr/2022
  • Stars
    star
    114
  • Rank 301,339 (Top 7 %)
  • Language
    Dockerfile
  • License
    Apache License 2.0
  • Created over 9 years ago
  • Updated about 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

[Unmaintained] Dockerfiles for various versions of ActiveMQ

Unmaintained: This is no longer under active development. I really loved seeing that the images were found so useful by so many people. Sadly I did not have the time for quite a while to follow up on the requests or help establishing a healthy community around it. Also my past attempt to transfer this repo to the activemq org failed. Therefore I am going to archive this and I hope that you will find another place for great activemq containers.

docker-activemq

Build Status Docker Pulls

Docker file for trusted builds of ActiveMQ on https://registry.hub.docker.com/u/rmohr/activemq/.

Run the latest container with:

docker pull rmohr/activemq
docker run -p 61616:61616 -p 8161:8161 rmohr/activemq

The JMX broker listens on port 61616 and the Web Console on port 8161.

Image Tags

rmohr/activemq:latest (rmohr/activemq:5.15.9)
rmohr/activemq:5.10.0
rmohr/activemq:5.10.1
rmohr/activemq:5.10.2
rmohr/activemq:5.11.0
rmohr/activemq:5.11.1
rmohr/activemq:5.12.0
rmohr/activemq:5.12.1
rmohr/activemq:5.12.2
rmohr/activemq:5.13.0
rmohr/activemq:5.13.1
rmohr/activemq:5.13.2
rmohr/activemq:5.13.3
rmohr/activemq:5.13.4
rmohr/activemq:5.14.0
rmohr/activemq:5.14.0-alpine
rmohr/activemq:5.14.1
rmohr/activemq:5.14.1-alpine
rmohr/activemq:5.14.2
rmohr/activemq:5.14.2-alpine
rmohr/activemq:5.14.3
rmohr/activemq:5.14.3-alpine
rmohr/activemq:5.14.4
rmohr/activemq:5.14.4-alpine
rmohr/activemq:5.14.5
rmohr/activemq:5.14.5-alpine
rmohr/activemq:5.15.2
rmohr/activemq:5.15.2-alpine
rmohr/activemq:5.15.3
rmohr/activemq:5.15.3-alpine
rmohr/activemq:5.15.4
rmohr/activemq:5.15.4-alpine
rmohr/activemq:5.15.5
rmohr/activemq:5.15.5-alpine
rmohr/activemq:5.15.6
rmohr/activemq:5.15.6-alpine
rmohr/activemq:5.15.9
rmohr/activemq:5.15.9-alpine

Port Map

61616 JMS
8161  UI
5672  AMQP  (since `rmohr/activemq:5.12.1`)
61613 STOMP (since `rmohr/activemq:5.12.1`)
1883  MQTT  (since `rmohr/activemq:5.12.1`)
61614 WS    (since `rmohr/activemq:5.12.1`)

Customizing configuration and persistence location

By default data and configuration is stored inside the container and will be lost after the container has been shut down and removed. To persist these files you can mount these directories to directories on your host system:

docker run -p 61616:61616 -p 8161:8161 \
           -v /your/persistent/dir/conf:/opt/activemq/conf \
           -v /your/persistent/dir/data:/opt/activemq/data \
           rmohr/activemq

ActiveMQ expects that some configuration files already exists, so they won't be created automatically, instead you have to create them on your own before starting the container. If you want to start with the default configuration you can initialize your directories using some intermediate container:

docker run --user root --rm -ti \
  -v /your/persistent/dir/conf:/mnt/conf \
  -v /your/persistent/dir/data:/mnt/data \
  rmohr/activemq:5.15.4-alpine /bin/sh

This will bring up a shell, so you can just execute the following commands inside this intermediate container to copy the default configuration to your host directory:

chown activemq:activemq /mnt/conf
chown activemq:activemq /mnt/data
cp -a /opt/activemq/conf/* /mnt/conf/
cp -a /opt/activemq/data/* /mnt/data/
exit

The last command will stop and remove the intermediate container. Your directories are now initialized and you can run ActiveMQ as described above.

More Repositories

1

static3

A really simple WSGI way to serve static (or mixed) content.
Python
30
star
2

bazeldnf

Build multi-arch base containers based on RPM with bazel.
Go
25
star
3

kubernetes-custom-exec

Demo on how to write your own `kubectl exec` command with client-go
Go
13
star
4

rules_container_rpm

bazel rules to install and manage rpms inside of containers
Python
10
star
5

fedora-distroless

fedora-distroless
Python
10
star
6

sphinx-server

A minimalistic server for uploading and viewing sphinx documentation
Python
7
star
7

docker-ovirt-engine

Dockerized version of ovirt-engine, the management part of oVirt.
Shell
7
star
8

chroot-plugin

A Jenkins plugin which adds support for disposable chroot environments, which can be very usefull for C and C++ projects.
Java
6
star
9

ovirt-prometheus-bridge

oVirt Engine host autodiscovery service for Prometheus targets
Go
5
star
10

vdsm-prometheus

Go client for VDSM which exposes host and VM stats as prometheus metrics.
Go
4
star
11

ceph-cinder-demo

Deploying ceph and cinder on openshift on a single node for demo purposes
Shell
3
star
12

qemu-dockerized

test
Shell
2
star
13

jumppod

Example repository on how to make use of a ssh jump-pod in kubevirt
Shell
2
star
14

docker-tomcat-redis

Dockerized Tomcat, configured to use Redis as Session Store
Shell
2
star
15

atlanta

Performance introspection for KubeVirt to create optimal tuning profiles for VMs
2
star
16

docker-ovirt-postgres

Slightly modified version of the official postgres image from dockerhub which works with ovirt-engine.
Shell
1
star
17

hana-template

1
star
18

go-swagger-utils

Go generator utils for swagger
Go
1
star
19

kubevirt-vagrant-demo

Shell
1
star
20

libconfigpp

C++ Drop-in replacement for libconfig
C++
1
star