1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/samba/Dockerfile

21 lines
320 B
Docker
Raw Normal View History

2015-07-17 14:53:21 +00:00
#
# Dockerfile for samba
#
FROM alpine
2017-05-07 23:05:07 +00:00
MAINTAINER kev <noreply@easypi.pro>
2015-07-17 14:53:21 +00:00
2017-07-03 10:46:37 +00:00
RUN apk add --no-cache samba-common-tools samba-server
2015-07-17 14:53:21 +00:00
2017-05-01 06:14:27 +00:00
COPY ./data/smb.conf /etc/samba/
2015-07-17 14:53:21 +00:00
2016-04-12 10:28:27 +00:00
VOLUME /etc/samba \
/var/lib/samba
2016-03-06 09:37:18 +00:00
EXPOSE 137/udp \
138/udp \
139/tcp \
445/tcp
2015-07-17 14:53:21 +00:00
CMD nmbd -D && smbd -FS --no-process-group