daily-prayer-time-for-mosques
Last commit date
API
1 year ago
Assets
8 months ago
Models
11 months ago
Views
11 months ago
docker
3 years ago
freemius
1 year ago
vendor
8 months ago
.gitignore
1 year ago
LICENSE
2 years ago
composer.json
1 year ago
composer.lock
1 year ago
daily-prayer-time.php
8 months ago
docker-compose.yml
1 year ago
index.html
4 years ago
readme.txt
8 months ago
uninstall.php
2 years ago
docker-compose.yml
37 lines
| 1 | services: |
| 2 | db: |
| 3 | # We use a mariadb image which supports both amd64 & arm64 architecture |
| 4 | image: mariadb:10.6.4-focal |
| 5 | # If you really want to use MySQL, uncomment the following line |
| 6 | #image: mysql:8.0.27 |
| 7 | command: '--default-authentication-plugin=mysql_native_password' |
| 8 | volumes: |
| 9 | - db_data:/var/lib/mysql |
| 10 | restart: always |
| 11 | environment: |
| 12 | - MYSQL_ROOT_PASSWORD=somewordpress |
| 13 | - MYSQL_DATABASE=wordpress |
| 14 | - MYSQL_USER=wordpress |
| 15 | - MYSQL_PASSWORD=wordpress |
| 16 | expose: |
| 17 | - 3306 |
| 18 | - 33060 |
| 19 | wordpress: |
| 20 | build: ./docker |
| 21 | volumes: |
| 22 | - wp_data:/var/www/html |
| 23 | - ./:/var/www/html/wp-content/plugins/dpt |
| 24 | - /etc/localtime:/etc/localtime:ro |
| 25 | - /etc/timezone:/etc/timezone:ro |
| 26 | ports: |
| 27 | - 80:80 |
| 28 | restart: always |
| 29 | environment: |
| 30 | - WORDPRESS_DB_HOST=db |
| 31 | - WORDPRESS_DB_USER=wordpress |
| 32 | - WORDPRESS_DB_PASSWORD=wordpress |
| 33 | - WORDPRESS_DB_NAME=wordpress |
| 34 | - WORDPRESS_DEBUG=true |
| 35 | volumes: |
| 36 | db_data: |
| 37 | wp_data: |