composer require drupal/upgrade_status --dev
drush en upgrade_status
drush upgrade_status:analyze --all --ignore-contrib
#!/bin/bash | |
# ref https://wodby.com/docs/1.0/infrastructure/disk/#3-moving-docker-and-wodbys-data-to-new-volume | |
echo "Stopping all Kubernetes components and Docker..." | |
# Stop all services in parallel | |
systemctl stop kube-apiserver & | |
systemctl stop kube-controller & | |
systemctl stop kube-kubelet & |
# docker aliases | |
## https://gist.github.com/ainsofs/ba947741b230606be5d2f4aad6faf7bf | |
## common | |
alias dc='docker compose' | |
alias dup='docker compose up -d --remove-orphans' | |
alias dstop='docker compose stop' | |
alias drm='docker compose rm' | |
## helpers | |
alias dupp='docker compose up -d && docker compose exec php bash' # Start project and open php container. |
# display all processes running on port 80 | |
netstat -aon | findstr 0.0:80 | |
# diplay the process details | |
tasklist /FI "PID eq 18748" |
-- DROP TABLE #tmpTableSizes | |
CREATE TABLE #tmpTableSizes | |
( | |
tableName varchar(100), | |
numberofRows varchar(100), | |
reservedSize varchar(50), | |
dataSize varchar(50), | |
indexSize varchar(50), | |
unusedSize varchar(50) | |
) |
<template> | |
<div> | |
<!--start-here--> | |
</div> | |
</template> | |
<script setup> | |
import { ref, computed } from 'vue' | |
// props and emits | |
const props = defineProps(['someProp']) |
# redirect from multiple domains to your primary domain | |
if (isset($_SERVER['WODBY_ENVIRONMENT_TYPE']) && $_SERVER['WODBY_ENVIRONMENT_TYPE'] == 'prod' && php_sapi_name() != "cli") { | |
$redirect_from = array( | |
'oldsite.com', | |
'alternative-spelling.com', | |
); | |
if (in_array($_SERVER['HTTP_HOST'], $redirect_from)) { | |
header('HTTP/1.0 301 Moved Permanently'); | |
header('Location: https://primary-domain.com'); |
# show all pods | |
kubectl get pods --all-namespaces | |
# get pod info | |
kubectl -n {uuid} describe pods {container_name} | |
# delete pod | |
kubectl -n {uuid} delete pods -lname={container_name} | |
# view pod log |
# list volumes | |
sudo fdisk -l | |
# create a mount location | |
mkdir -p /mnt/some-vol | |
# mount | |
mount /dev/xvdf /mnt/some-vol | |
# unmount |