Compare commits
5 Commits
07c97a103e
...
028cc0e8d5
Author | SHA1 | Date | |
---|---|---|---|
|
028cc0e8d5 | ||
|
385c342087 | ||
|
4d9d6830d4 | ||
|
5dcb90377d | ||
|
dcb95c63a9 |
19
.gitignore
vendored
19
.gitignore
vendored
@ -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
4
OpenWebUI/README.md
Normal 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
13
OpenWebUI/compose.yml
Normal 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'
|
||||
|
||||
|
9
Vaultwarden/docker-compose.yml
Normal file
9
Vaultwarden/docker-compose.yml
Normal 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
9
uptime-kuma/compose.yaml
Normal 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
|
Loading…
x
Reference in New Issue
Block a user