mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 13:08:29 +00:00
d791e08932
Replaces the vagrant based kerberos fixtures with docker based test fixtures plugin. The configuration is now entirely static on the docker side and no longer driven by Gradle, also two different services are being configured since there are two different consumers of the fixture that can run in parallel and require different configurations.
9 lines
249 B
Docker
9 lines
249 B
Docker
FROM ubuntu:14.04
|
|
ADD . /fixture
|
|
RUN echo kerberos.build.elastic.co > /etc/hostname && echo "127.0.0.1 kerberos.build.elastic.co" >> /etc/hosts
|
|
RUN bash /fixture/src/main/resources/provision/installkdc.sh
|
|
|
|
EXPOSE 88
|
|
EXPOSE 88/udp
|
|
|
|
CMD sleep infinity |