Skip to content

Instantly share code, notes, and snippets.

@brysontyrrell
Created November 25, 2019 14:16
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save brysontyrrell/95c9492f02a691b3f976830557f6d4ed to your computer and use it in GitHub Desktop.
Save brysontyrrell/95c9492f02a691b3f976830557f6d4ed to your computer and use it in GitHub Desktop.
A Docker Compose file for launching Jamf Pro
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