Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pythoninthegrass/760510ef416439de61239d33542666a3 to your computer and use it in GitHub Desktop.
Save pythoninthegrass/760510ef416439de61239d33542666a3 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