nav | ||||
---|---|---|---|---|
|
Automated deployments shouldn't be a pain and have several advantages, like lower failure rates and reproducible builds. Also, they increase overall productivity because actual testing can get more attention.
This article explains the fundamental steps to deploy Shopware 6 to a certain infrastructure, focussing on continuous deployment using GitLab CI or GitHub Actions and Deployer (a deployment tool written in PHP).
Please make sure you already have a working Shopware 6 instance running and that your repository is based on the Symfony Flex template because this article relies on some scripts to exist in your repository.
Deployer has a default directory structure in which it organizes releases, shared files across releases (e.g., certificates, configuration, or media files) and the symlink to the current release.
The structure looks like this:
├── .dep
├── current -> releases/1
├── releases
│ └── 1
└── shared
├── .env
└── config
└── ...
Suppose you haven't used such a structure yet, it is recommended to move the current document root contents to a different location because you will have to copy some existing files into the shared
folder after your first deployment with Deployer.
For more information, refer to Migrating existing instance to Deployer structure.
Ensure to set the document root of the domain to /var/www/shopware/current/public
, assuming /var/www/shopware
is the path you are uploading Shopware to, but this can, of course, differ. The most important part of this path is current
, which is the symlink to the currently active release.
Because current
is a symlink, please also make sure your web server is configured to resolve/follow symlinks correctly.
GitLab pipelines are processed by runners. Once a pipeline job is created, GitLab notifies a registered runner, and the job will then be processed by that runner.
The GitLab runner must have the following packages installed:
- PHP (see supported versions in the System Requirements)
- NodeJS
- Node Package Manager (npm)
- OpenSSH
This example uses the docker image shopware/shopware-cli:latest-php-8.3
. This image meets all requirements.
The very first step in the pipeline is cloning the repository into the runner's workspace. GitLab does that automatically for every started job.
All the dependencies of your project must be installed. Shopware 6 uses Composer for managing PHP dependencies and Node Package Manager (NPM) for frontend related dependencies.
We use here Shopware-CLI which simplifies the installation of the dependencies and building the project assets to build a production-ready version of Shopware.
For transferring the files to the target server, please configure at least one host in the deploy.php
:
host('SSH-HOSTNAME')
->setLabels([
'type' => 'web',
'env' => 'prod',
])
->setRemoteUser('www-data')
->set('deploy_path', '/var/www/shopware') // This is the path, where deployer will create its directory structure
->set('http_user', 'www-data') // Not needed, if the `user` is the same user, the webserver is running with
->set('writable_mode', 'chmod');
This step is defined in the deploy:update_code
job in the deploy.php
:
task('deploy:update_code')->setCallback(static function () {
upload('.', '{{release_path}}', [
'options' => [
'--exclude=.git',
'--exclude=deploy.php',
'--exclude=node_modules',
],
]);
});
The migrations need to be applied on the target server.
::: danger If you are deploying to a cluster with multiple web servers, please make sure to run the migrations only on one of the servers. :::
This step is defined in the sw:deployment:helper
job in the deploy.php
, which is part of the sw:deploy
task group:
task('sw:deployment:helper', static function() {
run('cd {{release_path}} && vendor/bin/shopware-deployment-helper run');
});
Before putting the new version live, ensure to create an empty file install.lock
in the root of the build workspace. Otherwise, Shopware will redirect every request to the Shopware installer because it assumes that Shopware isn't installed yet.
This task is defined in the sw:touch_install_lock
job in the deploy.php
, which is part of the sw:deploy
task group:
task('sw:touch_install_lock', static function () {
run('cd {{release_path}} && touch install.lock');
});
Before putting the new version live, it is recommended to run the system checks to ensure that the new version is working correctly.
task('sw:health_checks', static function () {
run('cd {{release_path}} && bin/console system:check --context=pre_rollout');
});
Before incorporating this step into your deployment process, make sure that you are well familiar with the System Checks Concepts and how to use and interpret the results Custom usage, and the command error codes.
After all the steps are done, Deployer will switch the symlinks destination to the new release.
This task is defined in the deploy:symlink
default job in the deploy.php
.
This is the output of dep deploy env=prod
:
$ dep deploy env=prod
✔ Executing task deploy:prepare
✔ Executing task deploy:lock
✔ Executing task deploy:release
✔ Executing task deploy:update_code
✔ Executing task deploy:shared
✔ Executing task sw:touch_install_lock
✔ Executing task sw:deployment:helper
✔ Executing task deploy:writable
✔ Executing task deploy:clear_paths
✔ Executing task deploy:symlink
✔ Executing task deploy:unlock
✔ Executing task cleanup
Successfully deployed!
After the very first deployment with Deployer, you have to copy some files and directories from your existing Shopware instance into the directory structure, that was created by Deployer.
Let's agree on the following two paths for the examples:
- You have copied your existing Shopware instance to
/var/www/shopware_backup
. - You have set the
deploy_path
in thedeploy.php
to/var/www/shopware
.
Now, look at the shared_files
and shared_dirs
configurations in the deploy.php
. Simply copy all the paths into /var/www/shopware/shared
. For the configuration of the deploy.php
the commands would be the following:
cp /var/www/shopware_backup/.env.local /var/www/shopware/shared/.env.local
cp -R /var/www/shopware_backup/custom/plugins /var/www/shopware/shared/custom
cp -R /var/www/shopware_backup/config/jwt /var/www/shopware/shared/config
cp -R /var/www/shopware_backup/config/packages /var/www/shopware/shared/config
cp -R /var/www/shopware_backup/files /var/www/shopware/shared
cp -R /var/www/shopware_backup/var/log /var/www/shopware/shared/var
cp -R /var/www/shopware_backup/public/media /var/www/shopware/shared/public
cp -R /var/www/shopware_backup/public/thumbnail /var/www/shopware/shared/public
cp -R /var/www/shopware_backup/public/sitemap /var/www/shopware/shared/public
Have a look at the following files. All steps are provided with helpful comments.
# This file defines the GitLab CI/CD pipeline.
# For more information, please visit the GitLab CI/CD docs: https://docs.gitlab.com/ee/ci/README.html
variables:
GIT_STRATEGY: clone
# This variable holds all commands that are needed to be able to connect to the target server via SSH.
# For this you need to define two variables in the GitLab CI/CD variables:
# - SSH_PRIVATE_KEY: The contents of the SSH private key file. The public key must be authorized on the target server.
# - DEPLOYMENT_SERVER: Just the hostname of the target server (e.g. shopware.com, don't include schema or paths)
.configureSSHAgent: &configureSSHAgent |-
eval $(ssh-agent -s)
echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
mkdir -p ~/.ssh
ssh-keyscan $DEPLOYMENT_SERVER >> ~/.ssh/known_hosts
chmod 700 ~/.ssh
Deploy:
stage: deploy
# Tags are useful to only use runners that are safe or meet specific requirements
image: shopware/shopware-cli:latest-php-8.3
before_script:
# First, we need to execute all commands that are defined in the `configureSSHAgent` variable.
- *configureSSHAgent
script:
# This command installs all dependencies and builds the project.
- shopware-cli project ci .
# This command starts the workflow that is defined in the `deploy` task in the `deploy.php`.
# `production` is the stage that was defined in the `host` in the `deploy.php`
- vendor/bin/dep deploy
name: Deployment
on:
push:
branches: main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- name: Install Shopware CLI
uses: shopware/shopware-cli-action@v1
- name: Build
run: shopware-cli project ci .
- name: Deploy
uses: deployphp/action@v1
with:
dep: deploy
private-key: ${{ secrets.SSH_PRIVATE_KEY }}
<?php
namespace Deployer;
require_once 'recipe/common.php';
require_once 'contrib/cachetool.php';
set('bin/console', '{{bin/php}} {{release_or_current_path}}/bin/console');
set('cachetool', '/run/php/php-fpm.sock');
set('application', 'Shopware 6');
set('allow_anonymous_stats', false);
set('default_timeout', 3600); // Increase when tasks take longer than that.
// Hosts
host('SSH-HOSTNAME')
->setLabels([
'type' => 'web',
'env' => 'production',
])
->setRemoteUser('www-data')
->set('deploy_path', '/var/www/shopware')
->set('http_user', 'www-data') // Not needed, if the `user` is the same user, the webserver is running with
->set('writable_mode', 'chmod')
->set('keep_releases', 3); // Keeps 3 old releases for rollbacks (if no DB migrations were executed)
// These files are shared among all releases.
set('shared_files', [
'.env.local',
'install.lock',
'public/.htaccess',
'public/.user.ini',
]);
// These directories are shared among all releases.
set('shared_dirs', [
'config/jwt',
'files',
'var/log',
'public/media',
'public/thumbnail',
'public/sitemap',
]);
// These directories are made writable (the definition of "writable" requires attention).
// Please note that the files in `config/jwt/*` receive special attention in the `sw:writable:jwt` task.
set('writable_dirs', [
'config/jwt',
'custom/plugins',
'files',
'public/bundles',
'public/css',
'public/fonts',
'public/js',
'public/media',
'public/sitemap',
'public/theme',
'public/thumbnail',
'var',
]);
task('sw:deployment:helper', static function() {
run('cd {{release_path}} && ./vendor/bin/shopware-deployment-helper run');
});
task('sw:touch_install_lock', static function () {
run('cd {{release_path}} && touch install.lock');
});
task('sw:health_checks', static function () {
run('cd {{release_path}} && bin/console system:check --context=pre_rollout');
});
desc('Deploys your project');
task('deploy', [
'deploy:prepare',
'deploy:clear_paths',
'sw:deployment:helper',
"sw:touch_install_lock",
'sw:health_checks',
'deploy:publish',
]);
task('deploy:update_code')->setCallback(static function () {
upload('.', '{{release_path}}', [
'options' => [
'--exclude=.git',
'--exclude=deploy.php',
'--exclude=node_modules',
],
]);
});
// Hooks
after('deploy:failed', 'deploy:unlock');
after('deploy:symlink', 'cachetool:clear:opcache');