mirror of https://github.com/Askill/docker-smb.git
14 lines
213 B
Docker
14 lines
213 B
Docker
|
|
FROM alpine:latest
|
||
|
|
|
||
|
|
RUN apk add --no-cache --update \
|
||
|
|
samba-common-tools \
|
||
|
|
samba-client \
|
||
|
|
samba-server
|
||
|
|
|
||
|
|
COPY smb.conf /etc/samba/smb.conf
|
||
|
|
|
||
|
|
EXPOSE 445/tcp
|
||
|
|
|
||
|
|
CMD ["smbd", "--foreground", "--log-stdout"]
|
||
|
|
|