- Introduced `Groq_AI_Provider_Google` and `Groq_AI_Provider_Groq` classes for handling AI interactions with Google and Groq respectively. - Enhanced `Groq_AI_Provider_Manager` to register and manage multiple AI providers. - Implemented `Groq_AI_Conversation_Manager` for managing conversation IDs and context hashes. - Added `Groq_AI_Generation_Logger` for logging AI generation events and managing log tables. - Developed `Groq_AI_Prompt_Builder` for constructing prompts and processing AI responses. - Established `Groq_AI_Settings_Manager` for managing plugin settings, including context fields and module configurations.
50 lines
1.1 KiB
YAML
50 lines
1.1 KiB
YAML
services:
|
|
db:
|
|
image: mariadb:10.11
|
|
command: --default-authentication-plugin=mysql_native_password
|
|
restart: unless-stopped
|
|
environment:
|
|
MYSQL_DATABASE: wordpress
|
|
MYSQL_USER: wordpress
|
|
MYSQL_PASSWORD: wordpress
|
|
MYSQL_ROOT_PASSWORD: supersecret
|
|
volumes:
|
|
- db_data:/var/lib/mysql
|
|
ports:
|
|
- "3307:3306"
|
|
|
|
wordpress:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/wordpress/Dockerfile
|
|
depends_on:
|
|
- db
|
|
ports:
|
|
- "8082:80"
|
|
environment:
|
|
WORDPRESS_DB_HOST: db:3306
|
|
WORDPRESS_DB_USER: wordpress
|
|
WORDPRESS_DB_PASSWORD: wordpress
|
|
WORDPRESS_DB_NAME: wordpress
|
|
WORDPRESS_DEBUG: 1
|
|
WP_ENVIRONMENT_TYPE: local
|
|
volumes:
|
|
- wordpress_data:/var/www/html
|
|
- ./:/var/www/html/wp-content/plugins/siti-ai-product-content-generator
|
|
restart: unless-stopped
|
|
|
|
phpmyadmin:
|
|
image: phpmyadmin/phpmyadmin:5
|
|
depends_on:
|
|
- db
|
|
ports:
|
|
- "8085:80"
|
|
environment:
|
|
PMA_HOST: db
|
|
PMA_USER: wordpress
|
|
PMA_PASSWORD: wordpress
|
|
|
|
volumes:
|
|
db_data:
|
|
wordpress_data:
|