Disable the Admin Worker
1. Create a Shopware config file
# Map to: /var/www/html/config/packages/shopware.yaml
shopware:
admin_worker:
enable_admin_worker: false2. Mount this file in your docker-compose.yaml
version: "3"
services:
shopware:
image: dockware/shopware:latest
container_name: shopware_app
volumes:
- ./docker/sw-config/shopware.yaml:/var/www/html/config/packages/shopware.yaml:ro3. Add the environment variable SW_TASKS_ENABLED to enable the integrated Cron tasks
4. Restart & activate
5. Make Shopware use the updated config
Last updated
Was this helpful?