vault backup: 2024-11-20 16:13:35
This commit is contained in:
Vendored
+21
-6
@@ -120,8 +120,23 @@
|
||||
"icon": "lucide-file",
|
||||
"title": "000 - Ideen & Links"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "9626ea622b14c0a7",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "Geschäft/IT/Online Shop/Shopware 6/docker-compose.yml.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "docker-compose.yml"
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"currentTab": 8
|
||||
}
|
||||
],
|
||||
"direction": "vertical"
|
||||
@@ -300,10 +315,12 @@
|
||||
"workspaces:Manage workspace layouts": false
|
||||
}
|
||||
},
|
||||
"active": "b8fdfac8a5325326",
|
||||
"active": "9626ea622b14c0a7",
|
||||
"lastOpenFiles": [
|
||||
"HomeLab/Software - Programme anschauen.md",
|
||||
"ToDo's/ToDo's.md",
|
||||
"Geschäft/IT/Online Shop/Shopware 6/docker-compose.yml.md",
|
||||
"Geschäft/IT/Online Shop/Shopware 6",
|
||||
"HomeLab/Software - Programme anschauen.md",
|
||||
"Privat/Fristingen/000 - Ideen & Links.md",
|
||||
"HomeLab/Linux Befehle.md",
|
||||
"HomeLab/VPS/Nextcloud.md",
|
||||
@@ -329,14 +346,12 @@
|
||||
"Geschäft/GTR Halle/000 - Allgemeine Notizen & Fragen.md",
|
||||
"Bank Höchstadt.md",
|
||||
"Geschäft/Gewürze/Alibaba.md",
|
||||
"Geschäft/Marketing/Perla/Schulungen/01 - 2024-10-30.md",
|
||||
"Geschäft/Marketing/Perla/Schulungen",
|
||||
"Geschäft/Marketing/Perla",
|
||||
"Geschäft/Marketing",
|
||||
"Geschäft/Nelson Müller",
|
||||
"Geschäft/Käfer",
|
||||
"Geschäft/IT",
|
||||
"Geschäft/Hotel",
|
||||
"Geschäft/Gewürze/attachments/2420032101MB - Angebot Districap - Ninon Mix - Lodner Gewürze.pdf"
|
||||
"Geschäft/Hotel"
|
||||
]
|
||||
}
|
||||
@@ -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
|
||||
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user