forked from shopwareArchive/development
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-dockware.yml
More file actions
51 lines (45 loc) · 1.08 KB
/
docker-compose-dockware.yml
File metadata and controls
51 lines (45 loc) · 1.08 KB
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
47
48
49
50
51
version: "3"
services:
shopware6-latest:
image: dockware/dev:latest
container_name: shopware6-latest
ports:
- "80:80"
- "3306:3306"
- "2222:22"
- "8888:8888"
- "9999:9999"
volumes:
- "dw_latest-db_volume-sw:/var/lib/mysql"
- "dw_latest-shop_volume-sw:/var/www/html"
# - ".:/var/www/html" # mount bind
# - "heiko_db_volume-sw:/var/lib/mysql"
# - "heiko_shop_volume-sw:/var/www/html"
networks:
- web
environment:
- XDEBUG_ENABLED=1
volumes:
dw_latest-db_volume-sw:
driver: local
dw_latest-shop_volume-sw:
driver: local
# heiko_db_volume-sw:
# external: true
# heiko_shop_volume-sw:
# external: true
<<<<<<< HEAD
elasticsearch:
image: elastic/elasticsearch:7.8.0
networks:
shopware:
aliases:
- elasticsearch
environment:
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
- discovery.type=single-node
=======
networks:
web:
external: false
>>>>>>> 0e49f05 ([TASK] Heiko's Anpassungen)