Skip to content

Commit

Permalink
Merge pull request #2 from MiGoller/develop
Browse files Browse the repository at this point in the history
Merge Develop into Main
  • Loading branch information
MiGoller authored Apr 11, 2021
2 parents 62c20c2 + 911e010 commit ccb21d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
elastictag: ['7.9.3', '7.10.1']
name: Publish Ekasticsearch v${{ matrix.elastictag }} images to GitHub and DockerHub Container Registries
elastictag: ['7.9.3', '7.12.0']
name: Publish Elasticsearch v${{ matrix.elastictag }} images to GitHub and DockerHub Container Registries
if: (github.ref == 'refs/heads/main')
|| (github.event_name == 'schedule')

Expand Down
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@
#

# Set the base elastic image's tag
ARG ELASTICTAG=7.9.3
ARG ELASTICTAG=7.12.0

# Set the base image to use for subsequent instructions.
FROM elasticsearch:${ELASTICTAG}

ARG ELASTICSEARCHPLUGINS="ingest-attachment"

# Basic build-time metadata as defined at http://label-schema.org
LABEL \
org.label-schema.docker.dockerfile="/Dockerfile" \
Expand All @@ -29,4 +31,4 @@ LABEL \

# Install additional plugins for Nextcloud's fulltext search
RUN \
bin/elasticsearch-plugin install --batch ingest-attachment
bin/elasticsearch-plugin install --batch ${ELASTICSEARCHPLUGINS}

0 comments on commit ccb21d9

Please sign in to comment.