Skip to content

Commit

Permalink
#50: Support Solr 9.x minor versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
reynoldsalec committed Sep 20, 2024
1 parent 86368b1 commit 6dc0aa5
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
18 changes: 18 additions & 0 deletions builders/solr.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ const path = require('path');

// Versions
const supportedVersions = [
'9.9',
'9.8',
'9.7',
'9.6',
'9.5',
'9.4',
'9.3',
'9.2',
'9.1',
'9.0',
'9',
'8.11',
Expand Down Expand Up @@ -138,6 +147,15 @@ const parseConfig = options => {
case '8.1': return parse8(options);
case '8.0': return parse8(options);
case '8': return parse8(options);
case '9.9': return parse9(options);
case '9.8': return parse9(options);
case '9.7': return parse9(options);
case '9.6': return parse9(options);
case '9.5': return parse9(options);
case '9.4': return parse9(options);
case '9.3': return parse9(options);
case '9.2': return parse9(options);
case '9.1': return parse9(options);
case '9.0': return parse9(options);
case '9': return parse9(options);
default: return parseElse(options);
Expand Down
9 changes: 9 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,15 @@ services:
## Supported versions
* [9.9](https://hub.docker.com/_/solr/) **(experimental)**
* [9.8](https://hub.docker.com/_/solr/) **(experimental)**
* [9.7](https://hub.docker.com/_/solr/) **(experimental)**
* [9.6](https://hub.docker.com/_/solr/) **(experimental)**
* [9.5](https://hub.docker.com/_/solr/) **(experimental)**
* [9.4](https://hub.docker.com/_/solr/) **(experimental)**
* [9.3](https://hub.docker.com/_/solr/) **(experimental)**
* [9.2](https://hub.docker.com/_/solr/) **(experimental)**
* [9.1](https://hub.docker.com/_/solr/) **(experimental)**
* [9](https://hub.docker.com/_/solr/) **(experimental)**
* [9.0](https://hub.docker.com/_/solr/) **(experimental)**
* [8](https://hub.docker.com/_/solr/)
Expand Down
2 changes: 1 addition & 1 deletion examples/9.x/.lando.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
config:
dir: '9.x-conf'
patch:
type: solr:9.0
type: solr:9.9
core: solo
portforward: true
config:
Expand Down

0 comments on commit 6dc0aa5

Please sign in to comment.