Skip to content

Commit

Permalink
container config updates (#820)
Browse files Browse the repository at this point in the history
* first round of config-updates

* valid config for elasticsearch
  • Loading branch information
maaikelimper authored Dec 15, 2024
1 parent 489b007 commit ca6e7df
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ services:
test: ["CMD", "curl", "-f", "http://localhost/oapi/admin/resources"]
interval: 5s
retries: 100
volumes:
- ${WIS2BOX_HOST_DATADIR}/mappings:/data/wis2box/mappings:ro

minio:
container_name: wis2box-minio
Expand All @@ -51,7 +53,9 @@ services:
- wis2box.env
environment:
- MINIO_BROWSER_LOGIN_ANIMATION=off
command: server --console-address ":9001" /data
- MINIO_BROWSER_REDIRECT=false
- MINIO_UPDATE=off
command: server --quiet --console-address ":9001" /data
# in a production-setup minio needs to be
volumes:
- minio-data:/data
Expand All @@ -76,6 +80,12 @@ services:
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
- cluster.name=es-wis2box
- xpack.security.enabled=false
- ingest.geoip.downloader.enabled=false
- xpack.ml.enabled=false
- xpack.watcher.enabled=false
- xpack.graph.enabled=false
- xpack.monitoring.templates.enabled=false
- cluster.routing.allocation.disk.threshold_enabled=false
mem_limit: 1.5g
memswap_limit: 1.5g
volumes:
Expand All @@ -100,6 +110,8 @@ services:
context: ./wis2box-broker
env_file:
- wis2box.env
volumes:
- mosquitto-config:/mosquitto/config

wis2box-management:
container_name: wis2box-management
Expand Down Expand Up @@ -150,3 +162,4 @@ volumes:
minio-data:
auth-data:
htpasswd:
mosquitto-config:

0 comments on commit ca6e7df

Please sign in to comment.