forked from milouk/docker-smb-opl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
executable file
·29 lines (22 loc) · 909 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# https://wiki.alpinelinux.org/wiki/Alpine_Linux_package_management
FROM alpine:3.10
# Your system user
ARG USER='user'
# SMB and SYSTEM password
ARG PASS='password'
ARG VERSION='4.11'
RUN apk add --no-cache --update sudo \
'samba-common-tools<'${VERSION}'' \
'samba-client<'${VERSION}'' \
'samba-server<'${VERSION}''
RUN apk add --no-cache --update # If your base image does not contain sudo.
RUN apk add ethtool # This is need to measure the link speed
RUN adduser -D -s /bin/ash -u 1000 ${USER} && addgroup ${USER} root # Grant sudo to the user
RUN echo ''${USER}' ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
RUN echo -ne ""${PASS}"\n"${PASS}"\n" | sudo smbpasswd -a -s ${USER}
RUN echo -ne ""${PASS}"\n"${PASS}"\n" | sudo passwd ${USER}
USER ${USER}
COPY smb.conf /etc/samba/smb.conf
EXPOSE 445/tcp
EXPOSE 445/udp
CMD ["sudo", "smbd", "--foreground", "--log-stdout", "--no-process-group"]