Created
June 11, 2019 23:09
-
-
Save HansUXdev/77e55c1857aa58b8cf1109306602233c to your computer and use it in GitHub Desktop.
wordpress docker-compose
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Please note that in actual production all passwords, usernames, dbnames, etc MUST grab from .env or the like | |
# Otherwise you may as well tell the whole world to hack you because WP wasn't already the largest possible target... | |
version: '3' | |
services: | |
# Database | |
db: | |
# Give the DB a unique name | |
container_name: baseDB | |
image: mysql:5.7 | |
volumes: | |
- db_data:/var/lib/mysql | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: password | |
MYSQL_DATABASE: wordpress | |
MYSQL_USER: wordpress | |
MYSQL_PASSWORD: wordpress | |
networks: | |
- wpsite | |
# phpmyadmin | |
phpmyadmin: | |
depends_on: | |
- db | |
image: phpmyadmin/phpmyadmin | |
restart: always | |
ports: | |
- '8080:80' | |
environment: | |
PMA_HOST: db | |
MYSQL_ROOT_PASSWORD: password | |
networks: | |
- wpsite | |
# Wordpress | |
wordpress: | |
# Give the WP container a unique name | |
container_name: baseWP | |
depends_on: | |
- db | |
image: wordpress:latest | |
ports: | |
- '8000:80' | |
restart: always | |
# Copy all the wordpress files to the src folder for local dev | |
volumes: ['./src/:/var/www/html'] | |
environment: | |
WORDPRESS_DB_HOST: db:3306 | |
WORDPRESS_DB_USER: wordpress | |
WORDPRESS_DB_PASSWORD: wordpress | |
networks: | |
- wpsite | |
networks: | |
wpsite: | |
volumes: | |
db_data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment