this repository includes all* you need for developing Shopware 6 plugins
* only Docker has to be installed
© 2021 - Moritz Petzka - petzka.com
- log/ [shopware log files]
- plugins/ [directory for extension development]
- docker-compose.yml
Your extensions from inside the plugins directory, automatically will be synchronized with the docker image
Log files from Shopware automatically will be dropped in the log directory
- Run:
docker-compose up -d
- Shopware Frontend : http://localhost
- Shopware Backend : http://localhost/admin
- Username:
admin
, Password:shopware
- Username:
You can change the Shopware Version to any other version, inside the docker-compose.yml file:
services:
shopware:
image: dockware/dev:latest
use either tag latest
or any other version like 6.1.5
, e.g:
services:
shopware:
image: dockware/dev:6.1.5
Download the current version of Shopware to your host into a src
directory:
mkdir -p ./src
docker cp shopware:/var/www/html/. ./src