Skip to content

Instantly share code, notes, and snippets.

@dafujii
Created February 24, 2020 01:54
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 dafujii/ecd1613a6ce58f24542dc7fee1d1e58d to your computer and use it in GitHub Desktop.
Save dafujii/ecd1613a6ce58f24542dc7fee1d1e58d to your computer and use it in GitHub Desktop.
version: '2'
services:
db:
image: mysql:5.7
volumes:
- ./.data/db:/var/lib/mysql
ports:
- 3306:3306
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:
- 8080:80
restart: always
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_PASSWORD: wordpress
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment