Created
July 18, 2016 14:22
-
-
Save AshMartian/0ede97e0ee65adf6259c45bed3cc8fb5 to your computer and use it in GitHub Desktop.
Puppet Docker Compose File
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| puppet: | |
| container_name: puppet | |
| hostname: puppet | |
| image: puppet/puppetserver | |
| ports: | |
| - 0.0.0.0:8140:8140 | |
| volumes: | |
| - ./code:/etc/puppetlabs/code/ | |
| - ./conf:/etc/puppetlabs/puppet/ | |
| environment: | |
| - PUPPETDB_SERVER_URLS=https://puppetdb.peninsula.wednet.edu:8086 | |
| links: | |
| - puppetdb:puppetdb.peninsula.wednet.edu | |
| puppetdbpostgres: | |
| container_name: postgres | |
| image: puppet/puppetdb-postgres | |
| environment: | |
| - POSTGRES_PASSWORD=puppetdb | |
| - POSTGRES_USER=puppetdb | |
| expose: | |
| - 5432 | |
| puppetdb: | |
| container_name: puppetdb | |
| hostname: puppetdb | |
| image: puppet/puppetdb | |
| ports: | |
| - 0.0.0.0:8085:8080 | |
| - 0.0.0.0:8086:8081 | |
| links: | |
| - puppetdbpostgres:postgres | |
| puppetboard: | |
| container_name: puppetboard | |
| image: puppet/puppetboard | |
| ports: | |
| - 8058:8000 | |
| links: | |
| - puppet:puppet | |
| puppetexplorer: | |
| container_name: puppetboard | |
| image: puppet/puppetexplorer | |
| ports: | |
| - 8059:80 | |
| read_only: true | |
| links: | |
| - puppet:puppet |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment