You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
705 B
29 lines
705 B
services:
|
|
wpdb:
|
|
image: mariadb:10.6.4-focal
|
|
restart: unless-stopped
|
|
container_name: db-wp
|
|
command: '--default-authentication-plugin=mysql_native_password'
|
|
volumes:
|
|
- ./db_wp:/var/lib/mysql
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=somewordpress
|
|
- MYSQL_DATABASE=wordpress
|
|
- MYSQL_USER=wordpress
|
|
- MYSQL_PASSWORD=wordpress
|
|
# expose:
|
|
# - 3306
|
|
# - 33060
|
|
wordpress:
|
|
image: wordpress:latest
|
|
ports:
|
|
- 9000:80
|
|
restart: always
|
|
environment:
|
|
- WORDPRESS_DB_HOST=db
|
|
- WORDPRESS_DB_USER=wordpress
|
|
- WORDPRESS_DB_PASSWORD=wordpress
|
|
- WORDPRESS_DB_NAME=wordpress
|
|
volumes:
|
|
- wp_data:/var/www/html
|