Skip to content

Commit

Permalink
Add ArtemisMQ
Browse files Browse the repository at this point in the history
  • Loading branch information
Romanow committed Dec 9, 2024
1 parent e68a29d commit a5a836c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# Docker Compose examples

* [Kafka](kafka/README.md)
* [Artemis](artemis/README.md)
* [Monitoring](monitoring/README.md)
* [Postgres](postgres/README.md)
* [Logging](logging/README.md)
Expand Down
1 change: 1 addition & 0 deletions artemis/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# ArtemisMQ
19 changes: 19 additions & 0 deletions artemis/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
services:
artemis:
image: "romanowalex/artemis:2.28.0"
container_name: artemis
environment:
ANONYMOUS_LOGIN: true
ports:
- "8161:8161"
- "61616:61616"
healthcheck:
test: [ "CMD-SHELL", "/var/lib/artemis-instance/bin/artemis check queue --name TEST --produce 10 --browse 10 --consume 10 --url tcp://localhost:61616" ]
interval: 10s
timeout: 10s
retries: 5
volumes:
- artemis-data:/var/lib/artemis-instance

volumes:
artemis-data:

0 comments on commit a5a836c

Please sign in to comment.