Skip to content

jodermo/shopware-development-package

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Shopware 6 - Development Package

this repository includes all* you need for developing Shopware 6 plugins

* only Docker has to be installed

© 2021 - Moritz Petzka - petzka.com

File Structure

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


Docker Deployment

Start Shopware 6 in Docker

  • Run: docker-compose up -d

URLs in web browser

Change Shopware Version

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 Shopware to the System

Download the current version of Shopware to your host into a src directory:

mkdir -p ./src
docker cp shopware:/var/www/html/. ./src

Shopware Documentations