forked from saucal/woocommerce-gateway-amazon-pay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
37 lines (36 loc) · 913 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
version: "3"
services:
wordpress:
build: ./docker/wordpress_xdebug
image: wordpress-xdebug
container_name: woocommerce_amazon_pay_wordpress
restart: always
depends_on:
- db
links:
- db:mysql
ports:
- "8082:80"
env_file:
- default.env
volumes:
- ./docker/wordpress:/var/www/html/
- ./docker/logs/apache2/:/var/log/apache2
- .:/var/www/html/wp-content/plugins/woocommerce-gateway-amazon-payments-advanced
- ./docker/dev-php.ini:/usr/local/etc/php/conf.d/dev-php.ini
db:
container_name: woocommerce_amazon_pay_mysql
image: mysql:5.7
ports:
- "5678:3306"
env_file:
- default.env
volumes:
- ./docker/data:/var/lib/mysql
phpMyAdmin:
container_name: woocommerce_amazon_pay_phpmyadmin
image: phpmyadmin/phpmyadmin:latest
ports:
- "8083:80"
env_file:
- default.env