initial commit
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Aaron Riedel 2022-05-18 09:28:36 +02:00
commit eecdf46700
Signed by: aaron
GPG key ID: 643004654D40D577
4 changed files with 42 additions and 0 deletions

36
.drone.yml Normal file
View file

@ -0,0 +1,36 @@
kind: pipeline
name: deploy
steps:
- name: docker
image: plugins/docker
settings:
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
repo: aaronriedel/elasticsearch
tags: latest
when:
branch:
include:
- main
event:
include:
- push
- name: docker-build
image: plugins/docker
settings:
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
repo: aaronriedel/elasticsearch
tags: latest
dry_run: true
when:
branch:
exclude:
- main
event:
exclude:
- push

2
Dockerfile Normal file
View file

@ -0,0 +1,2 @@
FROM docker.elastic.co/elasticsearch/elasticsearch:8.2.0
RUN bin/elasticsearch-plugin install --batch ingest-attachment

0
README.md Normal file
View file

4
renovate.json Normal file
View file

@ -0,0 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
}