mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
45db829039
Creates a new plugin to manage docker-compose based test fixtures. Convert the smb-fixture as a first example.
13 lines
317 B
Docker
13 lines
317 B
Docker
FROM ubuntu:16.04
|
|
RUN apt-get update -qqy && apt-get install -qqy samba ldap-utils
|
|
ADD . /fixture
|
|
RUN chmod +x /fixture/src/main/resources/provision/installsmb.sh
|
|
RUN /fixture/src/main/resources/provision/installsmb.sh
|
|
|
|
EXPOSE 389
|
|
EXPOSE 636
|
|
EXPOSE 3268
|
|
EXPOSE 3269
|
|
|
|
CMD service samba-ad-dc restart && sleep infinity
|