Salt Stack in Docker
904
Dockerfile to build a Salt Project Master image for the Docker open source container platform.
docker pull olegbukatchuk/saltstack:3007.1
You can also pull the latest tag, which is built from the repository HEAD
docker pull olegbukatchuk/saltstack:latest
The quickest way to get started is using docker compose.
wget https://raw.githubusercontent.com/olegbukatchuk/saltstack/master/docker-compose.yml
Start the saltstack container with the docker-compose.yml file by executing:
docker compose up --d
Alternatively, you can manually launch the salt-master container:
docker run --name saltstack --detach \
--publish 4505:4505 --publish 4506:4506 \
--env 'SALT_LOG_LEVEL=info' \
--volume $(pwd)/roots/:/home/salt/data/srv/ \
--volume $(pwd)/keys/:/home/salt/data/keys/ \
olegbukatchuk/saltstack:latest
more on github repo
Content type
Image
Digest
sha256:faf3f658a…
Size
167.2 MB
Last updated
about 2 years ago
docker pull olegbukatchuk/saltstack