Skip to content

Instantly share code, notes, and snippets.

@matthewstokeley
Last active February 24, 2020 15:29
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 matthewstokeley/e14ac60807bd196690b7e1c24a6444e5 to your computer and use it in GitHub Desktop.
Save matthewstokeley/e14ac60807bd196690b7e1c24a6444e5 to your computer and use it in GitHub Desktop.
Leibowitz containerized wordpress configuration
version: '3.3'
services:
db:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: ******
MYSQL_DATABASE: *******
MYSQL_USER: ********
MYSQL_PASSWORD: *******
wordpress:
depends_on:
- db
image: wordpress:latest
volumes:
- LOCALPATH:/public_html/wp-content/themes/
ports:
- "8000:80"
restart: always
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_USER: ********
WORDPRESS_DB_PASSWORD: *******
WORDPRESS_DB_NAME: ********
volumes:
db_data: {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment