Created
August 28, 2023 08:41
-
-
Save ehzawad/630377960b05f0c0c3b04d2c536c62bf 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: '3.8' | |
services: | |
db: | |
image: mariadb:10.6.4-focal | |
command: '--default-authentication-plugin=mysql_native_password' | |
volumes: | |
- db_data:/var/lib/mysql | |
restart: always | |
environment: | |
- MYSQL_ROOT_PASSWORD=somewordpress | |
- MYSQL_DATABASE=wordpress | |
- MYSQL_USER=wordpress | |
- MYSQL_PASSWORD=wordpress | |
- TZ=UTC | |
networks: | |
- my_network | |
expose: | |
- 3306 | |
- 33060 | |
wordpress: | |
image: wordpress:latest | |
volumes: | |
- wp_data:/var/www/html | |
ports: | |
- "80:80" | |
restart: always | |
environment: | |
- WORDPRESS_DB_HOST=db | |
- WORDPRESS_DB_USER=wordpress | |
- WORDPRESS_DB_PASSWORD=wordpress | |
- WORDPRESS_DB_NAME=wordpress | |
networks: | |
- my_network | |
networks: | |
my_network: | |
driver: bridge | |
volumes: | |
db_data: | |
wp_data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment