-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (32 loc) · 986 Bytes
/
docker-compose.yml
File metadata and controls
34 lines (32 loc) · 986 Bytes
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
services:
shop:
container_name: shopware_openblogware
image: dockware/shopware:latest
ports:
- "22:22" # ssh
- "80:80" # apache2
- "5173:5173" # watch admin
- "9998:9998" # watch storefront proxy (not needed if you start with "make watch-storefront")
- "9999:9999" # watch storefront
volumes:
- "db_volume:/var/lib/mysql"
- "shop_volume:/var/www/html"
# - ".:/var/www/html/custom/plugins/WerklOpenBlogware"
networks:
- web
environment:
- XDEBUG_ENABLED=0
## ***********************************************************************
## VOLUMES
## ***********************************************************************
volumes:
db_volume:
driver: local
shop_volume:
driver: local
## ***********************************************************************
## NETWORKS
## ***********************************************************************
networks:
web:
external: false