vault backup: 2024-11-20 16:13:35

This commit is contained in:
2024-11-20 16:13:35 +01:00
parent d960a3383d
commit 493d89ac01
2 changed files with 60 additions and 6 deletions
@@ -0,0 +1,39 @@
```
version: "3"
services:
shopware:
# use either tag "latest" or any other version like "6.5.3.0", ...
image: dockware/dev:latest
container_name: shopware
ports:
- "80:80"
- "3306:3306"
- "22:22"
- "8888:8888"
- "9999:9999"
volumes:
- "db_volume:/var/lib/mysql"
- "shop_volume:/var/www/html"
- "/mnt/c/Users/matth/Downloads/LodnerGeschmackswelten:/var/www/html/custom/plugins/LodnerGeschmackswelten"
networks:
- web
environment:
# default = 0, recommended to be OFF for frontend devs
- XDEBUG_ENABLED=1
# default = latest PHP, optional = specific version
- PHP_VERSION=8.3
volumes:
db_volume:
driver: local
shop_volume:
driver: local
networks:
web:
external: false
```