Skip to content

fix!: resolve hyper error and bubble rejected non-handled exceptions. #12 #14

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

Merged
merged 6 commits into from
Mar 2, 2022
Merged
Show file tree
Hide file tree
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
7 changes: 7 additions & 0 deletions .elasticsearch/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM opensearchproject/opensearch:1.2.4

ENV discovery.type=single-node

COPY ./opensearch.yml /usr/share/opensearch/config/opensearch.yml

EXPOSE 9200 9600
File renamed without changes.
7 changes: 7 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
image:
file: .gitpod.Dockerfile
tasks:
- name: Start Elasticsearch
init: |
docker build -t hyper-elasticsearch .elasticsearch
docker run -p 9200:9200 -p 9600:9600 --name local-hyper-elasticsearch hyper-elasticsearch
command: |
docker start -a local-hyper-elasticsearch

github:
prebuilds:
Expand Down
Loading