This commit is contained in:
2026-06-24 16:12:16 +02:00
commit 9fed7b2cbc
19 changed files with 2968 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
docker build --no-cache -t elliotathelsinki/foxgpt:latest .
docker push elliotathelsinki/foxgpt:latest
ssh -i /home/elliot/.ssh/id_rsa ubuntu@elliot-at-zuri.ch "
sudo docker pull elliotathelsinki/foxgpt:latest &&
sudo dokku apps:create foxgpt &&
sudo dokku domains:set foxgpt foxgpt-backend.elliot-at-zuri.ch &&
sudo dokku ports:set foxgpt http:80:4000 &&
sudo dokku letsencrypt:enable foxgpt &&
sudo dokku git:from-image foxgpt elliotathelsinki/foxgpt:latest &&
sudo dokku ps:rebuild foxgpt
"