Skip to content

Instantly share code, notes, and snippets.

@hacker65536
Created February 20, 2017 07:13
Show Gist options
  • Save hacker65536/0141ae9e74d2712a5b7233efb870aaef to your computer and use it in GitHub Desktop.
Save hacker65536/0141ae9e74d2712a5b7233efb870aaef to your computer and use it in GitHub Desktop.
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