Compare commits
2 Commits
forceSsl
...
3.0.0+6.5.
| Author | SHA1 | Date | |
|---|---|---|---|
| ea97fa4d01 | |||
|
a8f0b7d0c6
|
14
compose.yml
14
compose.yml
@ -24,6 +24,8 @@ x-shared:
|
||||
ELASTICSEARCH_NAMESPACE:
|
||||
ELASTICSEARCH_REINDEX:
|
||||
ELASTICSEARCH_SSL_VERIFY:
|
||||
ELASTICSEARCH_USER:
|
||||
ELASTICSEARCH_PASS:
|
||||
NGINX_PORT:
|
||||
NGINX_SERVER_NAME:
|
||||
NGINX_SERVER_SCHEME: https
|
||||
@ -67,7 +69,7 @@ x-shared:
|
||||
|
||||
services:
|
||||
zammad-elasticsearch:
|
||||
image: bitnami/elasticsearch:8.18.0
|
||||
image: elasticsearch:8.18.0
|
||||
deploy:
|
||||
restart_policy:
|
||||
condition: on-failure
|
||||
@ -77,11 +79,13 @@ services:
|
||||
reservations:
|
||||
memory: 2G
|
||||
volumes:
|
||||
- elasticsearch-data:/bitnami/elasticsearch/data
|
||||
- elasticsearch-data:/usr/share/elasticsearch/data
|
||||
environment:
|
||||
- discovery.type=single-node
|
||||
discovery.type: single-node
|
||||
xpack.security.enabled: 'false'
|
||||
ES_JAVA_OPTS: -Xms1g -Xmx1g
|
||||
healthcheck:
|
||||
test: "/opt/bitnami/scripts/elasticsearch/healthcheck.sh"
|
||||
#test: TODO
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 10
|
||||
@ -130,7 +134,7 @@ services:
|
||||
- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
|
||||
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
|
||||
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
|
||||
- "coop-cloud.${STACK_NAME}.version=2.1.0+6.5.0-34"
|
||||
- "coop-cloud.${STACK_NAME}.version=3.0.0+6.5.0-34"
|
||||
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost:8080"]
|
||||
|
||||
1
release/3.0.0+6.5.0-34
Normal file
1
release/3.0.0+6.5.0-34
Normal file
@ -0,0 +1 @@
|
||||
Breaking Change. You need to run the following command to change the elasticsearch volume permissions: abra app run -u 0 <APPDOMAIN> zammad-elasticsearch -- chown elasticsearch -Rv /usr/share/elasticsearch/data
|
||||
Reference in New Issue
Block a user