https://github.com/ronisaha/activemq
ActiveMQ Docker image
https://github.com/ronisaha/activemq
activemq alpine-linux docker-image
Last synced: 8 months ago
JSON representation
ActiveMQ Docker image
- Host: GitHub
- URL: https://github.com/ronisaha/activemq
- Owner: ronisaha
- Created: 2021-12-09T10:10:41.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-09T00:54:07.000Z (about 2 years ago)
- Last Synced: 2025-01-23T01:27:14.678Z (over 1 year ago)
- Topics: activemq, alpine-linux, docker-image
- Language: Dockerfile
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Apache ActiveMQ
----
Docker image with ApacheActiveMQ
## How to use this image?
----
### start a ActiveMQ instance
```bash
$ docker run --name some-activemq -d ronisaha/activemq
```
### start with persistent storage
----
data is stored in the `VOLUME /data`, which can be used with --volumes-from some-volume-container or -v /docker/host/dir:/data
(see [docs.docker volumes](https://docs.docker.com/engine/tutorials/dockervolumes/)).
run following command:
```bash
$ docker run --name some-activemq -d -v $PWD/data:/data ronisaha/activemq
```
## Port and services:
----
ampq: 5672
tcp: 61616
stomp: 61613
mqtt: 1883
ws: 61614
WebConsole: 8161