Skip to content

Instantly share code, notes, and snippets.

@toddheslin
Last active December 21, 2017 12:07
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 toddheslin/fb58950d96ae64379c3c6430d769da77 to your computer and use it in GitHub Desktop.
Save toddheslin/fb58950d96ae64379c3c6430d769da77 to your computer and use it in GitHub Desktop.
Wordpress Docker Compose
version: '3'
services:
db:
image: mariadb
volumes:
- db_data:/var/lib/mysql
restart: always
ports:
- "8081:3306"
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: wordpress
MYSQL_USER: root
MYSQL_PASSWORD: root
wordpress:
depends_on:
- db
image: wordpress:latest
volumes:
- ./:/var/www/html
ports:
- "8080:80"
restart: always
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_USER: root
WORDPRESS_DB_PASSWORD: root
volumes:
db_data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment