PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.4.7
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.4.7
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 All 149 releases
visualizer / vendor / codeinwp / themeisle-sdk / docker-compose.local.yml

docker-compose.local.yml in Visualizer – Tables & Charts Manager with Built-in AI Generator 3.4.7, at vendor/codeinwp/themeisle-sdk/docker-compose.local.yml

29 lines 738 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 version: '3.1'
2
3 services:
4 wordpress:
5 depends_on:
6 - mysql
7 image: hardeepasrani/pirate-brewery
8 ports:
9 - 999:80
10 volumes:
11 - ./tests/sample_products/sample_plugin:/var/www/html/wp-content/plugins/sample_plugin
12 - ./:/var/www/html/wp-content/plugins/sample_plugin/vendor
13 restart: always
14 environment:
15 WORDPRESS_DB_NAME: wordpress
16 WORDPRESS_DB_USER: wordpress
17 WORDPRESS_DB_PASSWORD: wordpress
18 WORDPRESS_DB_ROOT_PASSWORD: wordpress
19 mysql:
20 image: mysql:5.7
21 volumes:
22 - ~/db_data:/var/lib/mysql
23 restart: always
24 environment:
25 MYSQL_ROOT_PASSWORD: wordpress
26 MYSQL_DATABASE: wordpress
27 MYSQL_USER: wordpress
28 MYSQL_PASSWORD: wordpress
29