Skip to content

Commit ea3782f

Browse files
[docker] Fix dependency in docker-compose.opensearch.yml (#571)
[docker] Fix dependency in docker-compose.opensearch.yml (#571)
2 parents a9a96b5 + cfe2f6d commit ea3782f

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

docker-compose.opensearch.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
services:
2-
2+
33
###########################
44
# DEPENDENCIES #
55
###########################
@@ -61,7 +61,7 @@ services:
6161
- "9000:9000"
6262
environment:
6363
MINIO_ROOT_USER: ${MINIO_ROOT_USER}
64-
MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}
64+
MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}
6565
command: server /data
6666
restart: always
6767
healthcheck:
@@ -78,7 +78,7 @@ services:
7878
volumes:
7979
- type: bind
8080
source: ./rabbitmq.conf
81-
target: /etc/rabbitmq/rabbitmq.conf
81+
target: /etc/rabbitmq/rabbitmq.conf
8282
- amqpdata:/var/lib/rabbitmq
8383
restart: always
8484
healthcheck:
@@ -118,7 +118,7 @@ services:
118118
###########################
119119
# OPENCTI #
120120
###########################
121-
121+
122122
opencti:
123123
image: opencti/platform:latest
124124
environment:
@@ -155,7 +155,7 @@ services:
155155
depends_on:
156156
redis:
157157
condition: service_healthy
158-
elasticsearch:
158+
opensearch:
159159
condition: service_healthy
160160
minio:
161161
condition: service_healthy
@@ -296,7 +296,7 @@ services:
296296
restart: always
297297
depends_on:
298298
opencti:
299-
condition: service_healthy
299+
condition: service_healthy
300300

301301
###########################
302302
# OPENCTI DEFAULT DATA #
@@ -315,19 +315,19 @@ services:
315315
restart: always
316316
depends_on:
317317
opencti:
318-
condition: service_healthy
318+
condition: service_healthy
319319
connector-mitre:
320320
image: opencti/connector-mitre:latest
321321
environment:
322322
- OPENCTI_URL=http://opencti:8080
323323
- OPENCTI_TOKEN=${OPENCTI_ADMIN_TOKEN}
324324
- CONNECTOR_ID=${CONNECTOR_MITRE_ID}
325325
- CONNECTOR_AUTO_CREATE_SERVICE_ACCOUNT=true
326-
- CONNECTOR_AUTO_CREATE_SERVICE_ACCOUNT_CONFIDENCE_LEVEL=75
326+
- CONNECTOR_AUTO_CREATE_SERVICE_ACCOUNT_CONFIDENCE_LEVEL=75
327327
restart: always
328328
depends_on:
329329
opencti:
330-
condition: service_healthy
330+
condition: service_healthy
331331

332332
volumes:
333333
esdata:

0 commit comments

Comments
 (0)