Skip to content

Commit

Permalink
ACS-8856 Add Audit Storage to the docker compose setup (#1212)
Browse files Browse the repository at this point in the history
Co-authored-by: Giovanni Toraldo <[email protected]>
  • Loading branch information
damianujma and gionn authored Oct 9, 2024
1 parent 8a819c9 commit a30fdb8
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5 deletions.
23 changes: 22 additions & 1 deletion docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ services:
ports:
- "5432:5432"
elasticsearch:
image: elasticsearch:7.10.1
image: elasticsearch:7.17.3
environment:
- xpack.security.enabled=false
- discovery.type=single-node
Expand All @@ -162,6 +162,15 @@ services:
ports:
- 9200:9200
- 9300:9300
kibana:
image: kibana:7.17.3
mem_limit: 1g
environment:
- ELASTICSEARCH_HOSTS=http://elasticsearch:9200
ports:
- "5601:5601"
depends_on:
- elasticsearch
search:
image: quay.io/alfresco/alfresco-elasticsearch-live-indexing:4.1.0
mem_limit: 1g
Expand Down Expand Up @@ -204,6 +213,18 @@ services:
- "5672:5672" # AMQP
- "61616:61616" # OpenWire
- "61613:61613" # STOMP
audit-storage:
image: quay.io/alfresco/alfresco-audit-storage:0.0.1-A8
mem_limit: 512m
environment:
SPRING_ACTIVEMQ_BROKERURL: failover:(nio://activemq:61616)?timeout=3000
AUDIT_ENTRYSTORAGE_OPENSEARCH_CONNECTOR_URI: http://elasticsearch:9200
AUDIT_ENTRYSTORAGE_OPENSEARCH_CONNECTOR_USERNAME: admin
AUDIT_ENTRYSTORAGE_OPENSEARCH_CONNECTOR_PASSWORD: admin
AUDIT_EVENTINGESTION_URI: activemq:topic:alfresco.repo.event2
depends_on:
- activemq
- elasticsearch
digital-workspace:
image: quay.io/alfresco/alfresco-digital-workspace:5.1.0
mem_limit: 128m
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/pre-release-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ services:
ports:
- "5432:5432"
elasticsearch:
image: elasticsearch:7.10.1
image: elasticsearch:7.17.3
environment:
- xpack.security.enabled=false
- discovery.type=single-node
Expand Down
3 changes: 0 additions & 3 deletions docker-compose/solr6-override-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,3 @@ services:
search-reindexing:
image: busybox:musl
command: "true"
elasticsearch:
image: busybox:musl
command: "true"

0 comments on commit a30fdb8

Please sign in to comment.