Alpar Torok 45db829039
Replace fixtures with docker-compose (#35651)
Creates a new plugin to manage docker-compose based test fixtures. 
Convert the smb-fixture as a first example.
2018-11-29 09:43:16 +02:00

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