Skip to content

Commit

Permalink
Feat: add docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
mbologna committed Feb 18, 2021
1 parent 13615ec commit 3e3c9cd
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: "3"
services:
salt-master:
image: mbologna/saltstack-master
container_name: salt-master
hostname: salt-master
volumes:
- /srv/salt:/srv/salt
ports:
- 9080:9080
salt-minion:
image: mbologna/saltstack-minion
links:
- "salt-master:salt"
depends_on:
- salt-master

0 comments on commit 3e3c9cd

Please sign in to comment.