-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yaml
46 lines (44 loc) · 1.14 KB
/
docker-compose.yaml
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
38
39
40
41
42
43
44
45
46
services:
shopware:
container_name: hipay-enterprise-shopware-6
build:
args:
- DOCKWARE_VERSION=6.6.8.2
context: .
dockerfile: bin/docker/images/shopware/Dockerfile
ports:
- '2001:22'
- '3306:3306'
networks:
- shopware
env_file:
- ./bin/docker/conf/development/.env
volumes:
- 'shopware_data:/var/lib/mysql'
- './src:/var/www/html/custom/plugins/HiPayPaymentPlugin/src'
- './tests:/var/www/html/custom/plugins/HiPayPaymentPlugin/tests'
- './reports:/var/www/html/custom/plugins/HiPayPaymentPlugin/reports'
- './composer.json:/var/www/html/custom/plugins/HiPayPaymentPlugin/composer.json'
- './log:/var/www/html/var/log'
proxy:
container_name: proxy
image: dockware/proxy:latest
ports:
- '80:80'
- '443:443'
- '8888:8888'
- '9999:9999'
- '9998:9998'
- '9997:9997'
depends_on:
- shopware
networks:
- shopware
volumes:
- './bin/docker/conf/nginx/proxy.conf:/etc/nginx/conf.d/proxy.conf'
volumes:
shopware_data:
driver: local
networks:
shopware:
external: false