Compare commits

...

5 Commits

Author SHA1 Message Date
server
028cc0e8d5 merge 2024-08-14 04:52:59 +00:00
server
385c342087 uptime kuma 2024-08-14 04:51:49 +00:00
server
4d9d6830d4 open web ui 2024-08-14 04:51:20 +00:00
server
5dcb90377d realtive path 2024-08-14 04:48:58 +00:00
server
dcb95c63a9 vaultwarden init 2024-08-14 04:48:25 +00:00
5 changed files with 47 additions and 7 deletions

19
.gitignore vendored
View File

@ -1,7 +1,12 @@
Revolt/data
FileBrowser/database.db
Jellyfin/cache/
Jellyfin/config/
Pacoloco/cache/
qBittorrent/config/
qBittorrent/qbit-config/
/Revolt/data
/OpenWebUI/open-webui
/uptime-kuma/data
/FileBrowser/database.db
/Pacoloco/cache/
/Jellyfin/cache/
/Jellyfin/config/
/qBittorrent/config/
/qBittorrent/qbit-config/

4
OpenWebUI/README.md Normal file
View File

@ -0,0 +1,4 @@
# Open Web UI
Currently this config expects ollama to be running on a different device, the compose.yml has the ip for you to change in it.

13
OpenWebUI/compose.yml Normal file
View File

@ -0,0 +1,13 @@
services:
open-webui:
image: ghcr.io/open-webui/open-webui:main
restart: unless-stopped
environment:
- WEBUI_AUTH=False
- OLLAMA_BASE_URL=http://10.0.0.21:11434
ports:
- 4000:8080
volumes:
- './open-webui:/app/backend/data'

View File

@ -0,0 +1,9 @@
services:
vaultwarden:
image: vaultwarden/server:latest
restart: unless-stopped
ports:
- 1025:80
volumes:
- ./vw-data/:/data/

9
uptime-kuma/compose.yaml Normal file
View File

@ -0,0 +1,9 @@
services:
uptime-kuma:
image: louislam/uptime-kuma:1
volumes:
- ./data:/app/data
ports:
# <Host Port>:<Container Port>
- 3001:3001
restart: unless-stopped