Created
November 25, 2019 14:16
-
-
Save brysontyrrell/95c9492f02a691b3f976830557f6d4ed to your computer and use it in GitHub Desktop.
A Docker Compose file for launching Jamf Pro
This file contains 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
version: "3" | |
services: | |
mysql: | |
image: "mysql:5.7" | |
networks: | |
- jamfnet | |
ports: | |
- "3306:3306" | |
environment: | |
MYSQL_ROOT_PASSWORD: "jamfsw03" | |
MYSQL_DATABASE: "jamfsoftware" | |
app: | |
image: "jamfpro:10.17.0" | |
networks: | |
- jamfnet | |
ports: | |
- "80:8080" | |
environment: | |
DATABASE_USERNAME: "root" | |
DATABASE_PASSWORD: "jamfsw03" | |
DATABASE_HOST: "mysql" | |
depends_on: | |
- mysql | |
networks: | |
jamfnet: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment