Files
obsidian/Geschäft/IT/Online Shop/Shopware 6/Dockware.md
T

82 lines
1.3 KiB
Markdown

In WSL ausführen
```
docker compose up`
```
docker-compose.yaml
```
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
```
---
## Sonstige Befehle
Befehle über Windows Terminal
```
docker exec -it shopware bin/console theme:compile
```
```
docker exec -it shopware bin/build-administration.sh
```
```
docker exec -it shopware bin/console cache:clear
```
---
Theme erstellen:
```
bin/console theme:
```
Theme compilieren:
```
bin/console theme:compile
```
---
Zugangsdaten Backend:
Login: ``admin``
Passwort: ``shopware``
---