Update Servers/Containerization/Docker/Compose/Wordpress.md

This commit is contained in:
2025-04-21 00:01:04 -06:00
parent 1a7fc2c644
commit de8693a795

View File

@ -1,6 +1,6 @@
**Purpose**: At its core, WordPress is the simplest, most popular way to create your own website or blog. In fact, WordPress powers over 43.3% of all the websites on the Internet. Yes more than one in four websites that you visit are likely powered by WordPress.
```jsx title="docker-compose.yml"
```yaml title="docker-compose.yml"
version: '3.7'
services:
wordpress:
@ -43,7 +43,7 @@ networks:
external: true
```
```jsx title=".env"
```yaml title=".env"
WORDPRESS_DB_PASSWORD=SecurePassword101
MYSQL_ROOT_PASSWORD=SecurePassword202
```