Last active
December 26, 2020 17:40
-
-
Save leonmwandiringa/1ce3da7975960eb954d4c77d40cfaeb0 to your computer and use it in GitHub Desktop.
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
version: '2' | |
services: | |
mysql: | |
image: 'docker.io/bitnami/mysql:8.0-debian-10' | |
volumes: | |
- 'mysql_data:/bitnami/mysql' | |
environment: | |
- MYSQL_USER=bn_wordpress | |
- MYSQL_DATABASE=bitnami_wordpress | |
- ALLOW_EMPTY_PASSWORD=yes | |
phpmyadmin: | |
depends_on: | |
- db | |
image: phpmyadmin/phpmyadmin | |
restart: always | |
ports: | |
- '8080:80' | |
environment: | |
PMA_HOST: db | |
MYSQL_ROOT_PASSWORD: password | |
networks: | |
- wpsite | |
wordpress: | |
image: 'docker.io/bitnami/wordpress:5-debian-10' | |
ports: | |
- '80:8080' | |
- '443:8443' | |
volumes: | |
- 'wordpress_data:/bitnami/wordpress' | |
depends_on: | |
- mysql | |
environment: | |
- MARIADB_HOST=mysql | |
- MARIADB_PORT_NUMBER=3306 | |
- WORDPRESS_DATABASE_USER=bn_wordpress | |
- WORDPRESS_DATABASE_NAME=bitnami_wordpress | |
- ALLOW_EMPTY_PASSWORD=yes | |
volumes: | |
mysql_data: | |
driver: local | |
wordpress_data: | |
driver: local | |
networks: | |
wpsite: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment