forked from Fmstrat/samba-domain
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Fmstrat
committed
Jun 28, 2017
1 parent
add45f3
commit f2833f6
Showing
3 changed files
with
597 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM ubuntu:xenial | ||
MAINTAINER Fmstrat <[email protected]> | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN apt-get update && apt-get upgrade -y | ||
|
||
# Install all apps | ||
# The third line is for multi-site config (ping is for testing later) | ||
RUN apt-get install -y pkg-config | ||
RUN apt-get install -y attr acl samba smbclient ldap-utils winbind libnss-winbind libpam-winbind krb5-user krb5-kdc supervisor | ||
RUN apt-get install -y openvpn inetutils-ping | ||
|
||
# Set up script and run | ||
ADD init.sh /init.sh | ||
RUN chmod 755 /init.sh | ||
CMD /init.sh setup |
Oops, something went wrong.