Scripts: Add install-caddy.sh
Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
parent
57bdaaa7de
commit
d9b58a197e
1 changed files with 16 additions and 0 deletions
16
scripts/dist/install-caddy.sh
vendored
Executable file
16
scripts/dist/install-caddy.sh
vendored
Executable file
|
@ -0,0 +1,16 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Installs Caddy on Linux
|
||||
# bash <(curl -s https://raw.githubusercontent.com/photoprism/photoprism/develop/scripts/dist/install-caddy.sh)
|
||||
|
||||
set -e
|
||||
|
||||
echo "Installing Caddy..."
|
||||
|
||||
sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https
|
||||
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | sudo gpg --dearmor -o /usr/share/keyrings/caddy-stable-archive-keyring.gpg
|
||||
curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | sudo tee /etc/apt/sources.list.d/caddy-stable.list
|
||||
sudo apt update
|
||||
sudo apt install caddy
|
||||
|
||||
echo "Done."
|
Loading…
Reference in a new issue