Created
August 24, 2016 15:00
-
-
Save mizner/14a813a89099aba59bd129a73dbd50b1 to your computer and use it in GitHub Desktop.
Base Docker Compose File (change ports: 4301 & ports:8001)
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
version: '2' | |
services: | |
db: | |
image: mysql:5.6 | |
ports: | |
- "4301:3306" | |
volumes: | |
- "./.data/db:/var/lib/mysql" | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: wordpress | |
MYSQL_DATABASE: wordpress | |
MYSQL_USER: wordpress | |
MYSQL_PASSWORD: wordpress | |
wordpress: | |
depends_on: | |
- db | |
image: wordpress:latest | |
links: | |
- db | |
ports: | |
- "8001:80" | |
restart: always | |
environment: | |
WORDPRESS_DB_HOST: db:3306 | |
WORDPRESS_DB_PASSWORD: wordpress | |
working_dir: /var/www/html | |
volumes: | |
- ./wordpress/wp-content/:/var/www/html/wp-content |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment