Skip to content

Commit 0c2e6ff

Browse files
committed
Move config to config
1 parent 6419019 commit 0c2e6ff

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

distribution/docker/build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ void addCopyDockerContextTask(final boolean oss) {
4646
from 'src/docker/bin'
4747
}
4848

49-
from 'src/docker/config'
49+
into('config') {
50+
from 'src/docker/config'
51+
}
5052

5153
if (oss) {
5254
from configurations.ossDockerSource

distribution/docker/src/docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN elasticsearch-plugin install --batch file:///opt/${ingest-geoip}
3636
RUN elasticsearch-plugin install --batch file:///opt/${ingest-user-agent}
3737
RUN mkdir -p config data logs
3838
RUN chmod 0775 config data logs
39-
COPY elasticsearch.yml log4j2.properties config/
39+
COPY config/elasticsearch.yml config/log4j2.properties config/
4040

4141

4242
################################################################################

0 commit comments

Comments
 (0)