Install the docker.io package.
sudo apt install docker.io
You need to add your user to the docker
group.
alias.ssave=stash save | |
alias.sshow=!f() { git stash show stash^{/$*} -p; }; f | |
alias.sapply=!f() { git stash apply stash^{/$*}; }; f | |
alias.assume=update-index --assume-unchanged | |
alias.unassume=update-index --no-assume-unchanged | |
alias.assumed=!git ls-files -v | grep ^h | cut -c 3- | |
alias.masterdiff=log --oneline --no-merges --reverse master ^HEAD | |
alias.staged=diff --staged | |
alias.amend=commit --amend | |
alias.graph=log --oneline --graph --color=auto |
#!/usr/bin/env bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
sudo apt update | |
sudo apt --yes install mysql-client | |
v=8.4 |
#!/usr/bin/env bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
sudo apt install golang | |
# Set the latest default version to the highest priority. | |
sudo update-alternatives --install /usr/bin/go go /usr/lib/go/bin/go 20 \ | |
--slave /usr/bin/gofmt gofmt /usr/lib/go/bin/gofmt |
diff --git a/src/Util/Log/TeamCity.php b/src/Util/Log/TeamCity.php | |
index 695760d95..460d5e35d 100644 | |
--- a/src/Util/Log/TeamCity.php | |
+++ b/src/Util/Log/TeamCity.php | |
@@ -9,6 +9,8 @@ | |
*/ | |
namespace PHPUnit\Util\Log; | |
+use Drupal\Tests\Listeners\HtmlOutputPrinterTrait; | |
+ |
{ | |
"name": "drupal/search_365", | |
"type": "drupal-module", | |
"license": "GPL-2.0-or-later", | |
"homepage": "http://drupal.org/project/search_365", | |
"support": { | |
"issues": "https://www.drupal.org/project/issues/search_365" | |
}, | |
"minimum-stability": "dev", | |
"prefer-stable": true, |
curl 'https://www.drupal.org/api-d7/node.json?type=organization&taxonomy_vocabulary_50=24660&taxonomy_vocabulary_52=24054' | jq -ar '.list[].title' |
kubectl describe nodes | grep -A 4 "Allocated resources" |
# Prune merged git branches from local and remote | |
# example usage: gprune 8.x-1.x | |
gprune() { | |
DEFAULT_BRANCH=master | |
PROTECTED_BRANCH_PATTERN='|master|releases|7.x.*|8.x.*' | |
# Allow the base branch to be passed in as 1st param. | |
base_branch=${1-$DEFAULT_BRANCH} |