docker-avahi/Dockerfile
Florian Schwab bbedb041f2 cleanup
2018-09-28 03:36:11 +02:00

17 lines
351 B
Docker

FROM alpine:3.8
MAINTAINER Florian Schwab <me@ydkn.de>
# update system
RUN apk --no-cache --no-progress upgrade
# install avahi
RUN apk --no-cache --no-progress add avahi avahi-tools
# disable d-bus
RUN sed -i 's/.*enable-dbus.*/enable-dbus=no/' /etc/avahi/avahi-daemon.conf
# volumes
VOLUME ["/etc/avahi"]
# default command
CMD ["avahi-daemon"]