1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00

add salt-master

This commit is contained in:
kev 2015-07-08 20:26:36 +08:00
parent 0475a43047
commit f47d174739

15
salt-master/Dockerfile Normal file

@ -0,0 +1,15 @@
#
# Dockerfile for salt-master
#
FROM debian:jessie
MAINTAINER kev <noreply@datageek.info>
RUN apt-get update \
&& apt-get install -y curl \
&& curl -sSL https://bootstrap.saltstack.com | bash -s -- -M -N -X \
&& rm -rf /var/lib/apt/lists/*
EXPOSE 4505 4506
CMD salt-master --log-level warning --log-file /dev/stdout