WebTechKitchen; Your Web Technology Kitchen, contact us to create, or maintain your websites and other digital properties.

If docker with orbstack won't start

Submitted by barnettech on Wed, 01/21/2026 - 11:15

Check that the containers are in fact in orbstack, and make sure orbstack is still set as the default and not docker:

# check which is the default orbstack or docker
docker context ls
# Switch to OrbStack context
docker context use orbstack
# Verify it switched docker context ls
lando power off
lando start

Creating a patch to a Drupal contrib module

Submitted by barnettech on Wed, 05/29/2024 - 16:52
To apply a patch from an existing merge request on Drupal's GitLab repository to your project while waiting for it to be merged, you can follow these steps:

1. Download the Patch
From the merge request page (https://git.drupalcode.org/project/samlauth/-/merge_requests/18/diffs), you can usually find an option to download the diff or patch directly. If you're viewing the merge request:

Click on the "Changes" tab.
Right-click the "Download" button at the top right of the diff display and select "Save Link As..." to download the patch file.
2. Save the Patch Locally