Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions docker-compose.opensearch.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
services:

###########################
# DEPENDENCIES #
###########################
Expand Down Expand Up @@ -61,7 +61,7 @@ services:
- "9000:9000"
environment:
MINIO_ROOT_USER: ${MINIO_ROOT_USER}
MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}
MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}
command: server /data
restart: always
healthcheck:
Expand All @@ -78,7 +78,7 @@ services:
volumes:
- type: bind
source: ./rabbitmq.conf
target: /etc/rabbitmq/rabbitmq.conf
target: /etc/rabbitmq/rabbitmq.conf
- amqpdata:/var/lib/rabbitmq
restart: always
healthcheck:
Expand Down Expand Up @@ -118,7 +118,7 @@ services:
###########################
# OPENCTI #
###########################

opencti:
image: opencti/platform:latest
environment:
Expand Down Expand Up @@ -155,7 +155,7 @@ services:
depends_on:
redis:
condition: service_healthy
elasticsearch:
opensearch:
condition: service_healthy
minio:
condition: service_healthy
Expand Down Expand Up @@ -296,7 +296,7 @@ services:
restart: always
depends_on:
opencti:
condition: service_healthy
condition: service_healthy

###########################
# OPENCTI DEFAULT DATA #
Expand All @@ -315,19 +315,19 @@ services:
restart: always
depends_on:
opencti:
condition: service_healthy
condition: service_healthy
connector-mitre:
image: opencti/connector-mitre:latest
environment:
- OPENCTI_URL=http://opencti:8080
- OPENCTI_TOKEN=${OPENCTI_ADMIN_TOKEN}
- CONNECTOR_ID=${CONNECTOR_MITRE_ID}
- CONNECTOR_AUTO_CREATE_SERVICE_ACCOUNT=true
- CONNECTOR_AUTO_CREATE_SERVICE_ACCOUNT_CONFIDENCE_LEVEL=75
- CONNECTOR_AUTO_CREATE_SERVICE_ACCOUNT_CONFIDENCE_LEVEL=75
restart: always
depends_on:
opencti:
condition: service_healthy
condition: service_healthy

volumes:
esdata:
Expand Down
Loading