Skip to main content

Shopware Specifics

Warning This guide is under construction! The respective TL (Team Lead) will let you know as soon as it can be used in full.

For questions regarding the setup on Windows, contact Tobias Hopp or Hasan Dogan.


Installation of a new Dev Instance

Create a new project folder in WSL and clone the branch of the desired Shopware version there with:

git clone --branch <branch-name> git@git.econsor.net:shopware/shopware-6/_skeleton.git .

The different Shopware versions are always created in branches and named according to the schema "release/<version-number>", e.g.:

release/6.4.4.0

Start up the container stack in the same folder:

make up

Then the command for the installation of Shopware:

make shopware-install

After installation, the frontend container must be restarted manually once. To do this, simply open the Docker for Windows interface and click on the play symbol for the following container (not stack!): [projectName]-Frontend-...

Now Shopware is accessible at:

http://localhost:8000

The backend credentials are:

Username: admin
Password: shopware

Working with the Docker Stack

Always use the following command to start the containers:

make up

To stop, use this one:

make down