1
0
mirror of https://github.com/coltoneshaw/CS-Repro-Mattermost.git synced 2025-12-23 18:11:34 +01:00

added elastic

This commit is contained in:
coltoneshaw
2023-01-31 16:39:53 -05:00
parent 9073048e7e
commit fdfe8c1eaa
3 changed files with 151 additions and 8 deletions

View File

@@ -87,6 +87,7 @@ services:
# - ./certs/mattermost.crt:/mattermost/config/mattermost.crt:rW
keycloak:
container_name: cs-repro-keycloak
restart: unless-stopped
platform: linux/amd64
image: keycloak/keycloak:18.0.0
volumes:
@@ -98,4 +99,22 @@ services:
ports:
- 8080:8080
command:
- start-dev
- start-dev
elasticsearch:
image: elasticsearch:8.4.2
container_name: cs-repro-elasticsearch
restart: unless-stopped
environment:
- xpack.security.enabled=false
- discovery.type=single-node
ulimits:
memlock:
soft: -1
hard: -1
cap_add:
- IPC_LOCK
volumes:
- ./volumes/elastic:/usr/share/elasticsearch/data
ports:
- 9200:9200
- 9300:9300