Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Last active June 14, 2018 16:30
Show Gist options
  • Save anthonybudd/db36a19b476bbcc6c21eb244eee592a8 to your computer and use it in GitHub Desktop.
Save anthonybudd/db36a19b476bbcc6c21eb244eee592a8 to your computer and use it in GitHub Desktop.
version: '3.3'
services:
wordpress:
depends_on:
- db
image: wordpress:latest
volumes:
- ./:/var/www/html
ports:
- "80:80"
restart: always
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_NAME: my_project
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: wordpress
db:
image: mysql:5.7
volumes:
- ./.volumes/db:/var/lib/mysql
restart: always
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: somewordpress
MYSQL_DATABASE: my_project
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment