1
This repository has been archived on 2022-11-04. You can view files and clone it, but cannot push or open issues or pull requests.
samba-with-avahi/Dockerfile

20 lines
404 B
Docker
Raw Normal View History

2020-04-18 17:06:41 +04:00
FROM alpine
MAINTAINER Vladimir Hodakov <vladimir@hodakov.me>
RUN apk add --no-cache tini bash samba-common-tools samba-server
COPY entrypoint.sh /usr/local/bin/entrypoint
RUN ["chmod", "+x", "/usr/local/bin/entrypoint"]
2020-04-18 17:06:41 +04:00
VOLUME /etc/samba \
/var/lib/samba \
/data
EXPOSE 137/udp \
138/udp \
139/tcp \
445/tcp
CMD ["/sbin/tini", "--", "/usr/local/bin/entrypoint"]