add dokku script

This commit is contained in:
Adora Laura Kalb 2023-04-22 09:48:16 +02:00
parent 81cb43e9dc
commit 9859d3f544
Signed by: adoralaura
GPG key ID: 7A4552166FC8C056
2 changed files with 15 additions and 0 deletions

10
dokku/app-create.sh Normal file
View file

@ -0,0 +1,10 @@
#!/bin/bash
appname=$1
if [[ -z "$appname" ]]; then
echo "Usage: $0 app-name"
exit 1
fi
dokku apps:create $appname
dokku proxy:set $appname caddy

5
dokku/readme.md Normal file
View file

@ -0,0 +1,5 @@
# dokku-scripts
Scripts for managing a dokku instance
https://dokku.com/