Skip to content

Commit

Permalink
Speed up starting and stopping the OpenSearch dev container
Browse files Browse the repository at this point in the history
This puts the process under the control of a process manager
(`tini` specifically) so it can handle signals better.

cf. opensearch-project/opensearch-build#3229 (comment)
  • Loading branch information
JulianKniephoff committed Apr 30, 2024
1 parent ea0ea93 commit d3fb24f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ services:
elasticsearch:
container_name: opencast-opensearch
image: opensearchproject/opensearch:1
init: true
ports:
- 127.0.0.1:9200:9200
- 127.0.0.1:9300:9300
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ services:
elasticsearch:
container_name: opencast-opensearch
image: opensearchproject/opensearch:1
init: true
ports:
- 127.0.0.1:9200:9200
- 127.0.0.1:9300:9300
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ services:
elasticsearch:
container_name: opencast-opensearch
image: opensearchproject/opensearch:1
init: true
ports:
- 127.0.0.1:9200:9200
- 127.0.0.1:9300:9300
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ services:
elasticsearch:
container_name: opencast-opensearch
image: opensearchproject/opensearch:1
init: true
ports:
- 127.0.0.1:9200:9200
- 127.0.0.1:9300:9300
Expand Down

0 comments on commit d3fb24f

Please sign in to comment.