Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

container config updates #820

Merged
merged 2 commits into from
Dec 15, 2024
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
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:
Loading