Skip to content

Instantly share code, notes, and snippets.

@farmdawgnation
Last active March 7, 2017 14:46
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 farmdawgnation/0bc15950c91a270d14fcf2e39777fc37 to your computer and use it in GitHub Desktop.
Save farmdawgnation/0bc15950c91a270d14fcf2e39777fc37 to your computer and use it in GitHub Desktop.
Docker compose file for Leadership Macon development
version: '2'
services:
mysql:
image: mysql:5.7.17
environment:
MYSQL_ROOT_PASSWORD: "PICKAROOTPASSWORD"
wordpress:
image: wordpress:latest
ports:
- 8080:80
links:
- mysql
volumes:
- ./busybee:/usr/src/wordpress/wp-content/themes/busybee
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment