Skip to content

Instantly share code, notes, and snippets.

@semyont
Last active April 12, 2017 21:44
Show Gist options
  • Save semyont/ab0c192ae25c2e47a1f6326a43372da6 to your computer and use it in GitHub Desktop.
Save semyont/ab0c192ae25c2e47a1f6326a43372da6 to your computer and use it in GitHub Desktop.
Wordpress MySQL Docker Compose
version: '2'
services:
db:
image: mysql:5.7
volumes:
- db_data:/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
ports:
- "8000:80"
restart: always
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_PASSWORD: wordpress
volumes:
db_data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment