mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-20 23:48:20 +00:00
9 lines
No EOL
199 B
Bash
Executable file
9 lines
No EOL
199 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ $(id -u) -ne 0 ] ; then
|
|
echo "❌ Run me as root"
|
|
exit 1
|
|
fi
|
|
|
|
helm repo add bitnami https://charts.bitnami.com/bitnami
|
|
helm install -f drupal-chart-values.yml drupal bitnami/drupal |