File tree Expand file tree Collapse file tree 3 files changed +21
-0
lines changed
Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 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 )
Original file line number Diff line number Diff line change 1+ # ArtemisMQ
Original file line number Diff line number Diff line change 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 :
You can’t perform that action at this time.
0 commit comments