Skip to content

Commit a5a836c

Browse files
committed
Add ArtemisMQ
1 parent e68a29d commit a5a836c

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# Docker Compose examples
55

66
* [Kafka](kafka/README.md)
7+
* [Artemis](artemis/README.md)
78
* [Monitoring](monitoring/README.md)
89
* [Postgres](postgres/README.md)
910
* [Logging](logging/README.md)

artemis/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# ArtemisMQ

artemis/docker-compose.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
services:
2+
artemis:
3+
image: "romanowalex/artemis:2.28.0"
4+
container_name: artemis
5+
environment:
6+
ANONYMOUS_LOGIN: true
7+
ports:
8+
- "8161:8161"
9+
- "61616:61616"
10+
healthcheck:
11+
test: [ "CMD-SHELL", "/var/lib/artemis-instance/bin/artemis check queue --name TEST --produce 10 --browse 10 --consume 10 --url tcp://localhost:61616" ]
12+
interval: 10s
13+
timeout: 10s
14+
retries: 5
15+
volumes:
16+
- artemis-data:/var/lib/artemis-instance
17+
18+
volumes:
19+
artemis-data:

0 commit comments

Comments
 (0)