Skip to content

Commit

Permalink
Opensearch example (#492)
Browse files Browse the repository at this point in the history
OpenSearch was not working after latest refactor:
- fix sidecar script

While there:
- update OpenSearch to latest version
- fix one tiny Dockerfile warning
  • Loading branch information
jakozaur authored Jul 8, 2024
1 parent 6e041ec commit 6c7f280
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions docker/opensearch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ services:
condition: service_healthy
restart: unless-stopped
opensearch:
image: opensearchproject/opensearch:2.12.0
image: opensearchproject/opensearch:2.15.0
container_name: opensearch
environment:
- cluster.name=opensearch-cluster
Expand All @@ -66,7 +66,7 @@ services:
limits:
memory: 4G
opensearch-dashboards:
image: opensearchproject/opensearch-dashboards:2.12.0
image: opensearchproject/opensearch-dashboards:2.15.0
environment:
- 'OPENSEARCH_HOSTS=["http://mitmproxy:8080"]'
- "DISABLE_SECURITY_DASHBOARDS_PLUGIN=true"
Expand All @@ -86,14 +86,14 @@ services:
interval: 5s
timeout: 1s
opensearch-dashboards-sidecar:
image: opensearchproject/opensearch-dashboards:2.12.0
image: opensearchproject/opensearch-dashboards:2.15.0
restart: "no"
depends_on:
opensearch-dashboards:
condition: service_healthy
volumes:
- ./kibana/:/local_mount
command: ["/bin/bash", "-c", "/local_mount/add_osd_sample_data.sh"]
command: ["/bin/bash", "-c", "/local_mount/add_osd_sample_data.sh http://opensearch-dashboards:5601"]
clickhouse:
image: clickhouse/clickhouse-server:23.12.2.59-alpine
ports:
Expand Down
1 change: 0 additions & 1 deletion quesma/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ RUN --mount=type=cache,target="/root/.cache/go-build" \
-X 'buildinfo.Version=$QUESMA_VERSION' \
-X 'quesma/buildinfo.BuildDate=$QUESMA_BUILD_DATE' \
-X 'buildinfo.BuildDate=$QUESMA_BUILD_DATE' \
" \
-o bin

Expand Down

0 comments on commit 6c7f280

Please sign in to comment.