Shopware 6 development version installation error.

Please follow the following instructions in order to complete the developer version installation

  1. You can skip the ‘caching_sha2_password’ issue by using MySQL 5.7.28 image in docker file (Mysql 8 is the cause of this error)

   dev-ops/docker/containers/mysql/Dockerfile FROM mysql:8 -> FROM mysql:5.7.28

  1. docker commands should run without sudo command

   check 
   “docker info” - If you got an error related to permission please run the following command

   “sudo chmod 666 /var/run/docker.sock” - Then check again “docker info”

   if it is ok please follow the installation.

  1. You need to set the permissions of the folders. (Installation will stop many times with permission issue message)

  2. Set permissions and continue the installation

  3. At last, it will be installed :slight_smile:

1 „Gefällt mir“