Created
October 25, 2020 06:43
-
-
Save tjkhara/fd78864aab8ceda4c3a58b2155fc0e8d to your computer and use it in GitHub Desktop.
Docker compose for wordpress, mysql and phpmyadmin setup
This file contains hidden or 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
| version: '3' | |
| services: | |
| # Database | |
| db: | |
| 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: | |
| - '9002:80' | |
| environment: | |
| PMA_HOST: db | |
| MYSQL_ROOT_PASSWORD: password | |
| networks: | |
| - wpsite | |
| # Wordpress | |
| wordpress: | |
| depends_on: | |
| - db | |
| image: wordpress:latest | |
| ports: | |
| - '11002:80' | |
| restart: always | |
| volumes: ['./:/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