Skip to content

Instantly share code, notes, and snippets.

@stebennett
Created February 7, 2021 19:47
Show Gist options
  • Save stebennett/9775ceb5ec0d641a5635dfc6e97b27b0 to your computer and use it in GitHub Desktop.
Save stebennett/9775ceb5ec0d641a5635dfc6e97b27b0 to your computer and use it in GitHub Desktop.
Docker compose for a wordpress installation
version: '3'
services:
mysql:
image: 'mysql:5.7'
environment:
- MYSQL_ROOT_PASSWORD=password
- MYSQL_DATABASE=wordpress
wordpress:
image: wordpress
volumes:
- ./data:/var/www/html
ports:
- 8080:80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment