Compare commits
No commits in common. "f0f12fba831dbb4094f9e50a02b602708ce9df98" and "d331b3e11b79d2637f0c409c56bb22e2dfd1a92d" have entirely different histories.
f0f12fba83
...
d331b3e11b
|
@ -60,7 +60,6 @@ Not every stack is tested to fully work.
|
||||||
| Metube | ✅ | `alexta69/metube` | Web GUI for yt-dlp. | [Github](https://github.com/alexta69/metube) |
|
| Metube | ✅ | `alexta69/metube` | Web GUI for yt-dlp. | [Github](https://github.com/alexta69/metube) |
|
||||||
| Murmur (Mumble server) | ✅ | `registry.gitlab.com/skobkin/docker-murmur` | Mumble VoIP server (custom build) | [Website](https://www.mumble.info), [Github](https://github.com/mumble-voip/mumble) |
|
| Murmur (Mumble server) | ✅ | `registry.gitlab.com/skobkin/docker-murmur` | Mumble VoIP server (custom build) | [Website](https://www.mumble.info), [Github](https://github.com/mumble-voip/mumble) |
|
||||||
| NextCloud | ❌ Unfinished | `nextcloud` | File management, synchronization, management and GTD platform. | [Website](https://nextcloud.com), [Github](https://github.com/nextcloud/server) |
|
| NextCloud | ❌ Unfinished | `nextcloud` | File management, synchronization, management and GTD platform. | [Website](https://nextcloud.com), [Github](https://github.com/nextcloud/server) |
|
||||||
| Ollama | ✅ | `ollama/ollama` | Toolkit for easily running LLM's locally. | [Website](https://ollama.com), [Github](https://github.com/ollama/ollama) |
|
|
||||||
| Open Streaming Platform | ✅ | `deamos/openstreamingplatform` | Live streaming platform. | [Website](https://openstreamingplatform.com), [Gitlab](https://gitlab.com/osp-group/flask-nginx-rtmp-manager) |
|
| Open Streaming Platform | ✅ | `deamos/openstreamingplatform` | Live streaming platform. | [Website](https://openstreamingplatform.com), [Gitlab](https://gitlab.com/osp-group/flask-nginx-rtmp-manager) |
|
||||||
| OpenVPN | ✅ | `kylemanna/openvpn` | OpenVPN server with some management toolkit. | [Website](https://openvpn.net), [Image Github](https://www.github.com/kylemanna/docker-openvpn) |
|
| OpenVPN | ✅ | `kylemanna/openvpn` | OpenVPN server with some management toolkit. | [Website](https://openvpn.net), [Image Github](https://www.github.com/kylemanna/docker-openvpn) |
|
||||||
| Owncast | ✅ | `gabekangas/owncast` | Live streaming platform with federation support. | [Website](https://owncast.online), [Github](https://github.com/owncast/owncast) |
|
| Owncast | ✅ | `gabekangas/owncast` | Live streaming platform with federation support. | [Website](https://owncast.online), [Github](https://github.com/owncast/owncast) |
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
# see https://hub.docker.com/r/ollama/ollama
|
|
||||||
OLLAMA_IMAGE_TAG=latest
|
|
||||||
UI_IMAGE_TAG=main
|
|
||||||
|
|
||||||
#HOST_USER=1000
|
|
||||||
HOST_OLLAMA_DATA_DIR=./data/ollama
|
|
||||||
HTTP_OLLAMA_BIND_ADDR=127.0.0.1
|
|
||||||
HTTP_OLLAMA_BIND_PORT=11434
|
|
||||||
|
|
||||||
HOST_UI_DATA_DIR=./data/open-webui
|
|
||||||
HTTP_UI_BIND_ADDR=127.0.0.1
|
|
||||||
HTTP_UI_BIND_PORT=8010
|
|
||||||
UI_SECRET_KEY=changeme
|
|
||||||
|
|
||||||
LOG_MAX_SIZE=5m
|
|
||||||
LOG_MAX_FILE=5
|
|
2
ollama/data/ollama/.gitignore
vendored
2
ollama/data/ollama/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
/*
|
|
||||||
!/.gitignore
|
|
2
ollama/data/open-webui/.gitignore
vendored
2
ollama/data/open-webui/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
/*
|
|
||||||
!/.gitignore
|
|
|
@ -1,34 +0,0 @@
|
||||||
version: '3.7'
|
|
||||||
|
|
||||||
services:
|
|
||||||
webui:
|
|
||||||
image: "ghcr.io/open-webui/open-webui:${UI_IMAGE_TAG:-main}"
|
|
||||||
container_name: ollama-open-webui
|
|
||||||
volumes:
|
|
||||||
- "${HOST_UI_DATA_DIR:-./data/open-webui}:/app/backend/data"
|
|
||||||
depends_on:
|
|
||||||
- ollama
|
|
||||||
ports:
|
|
||||||
- "${HTTP_UI_BIND_ADDR:-127.0.0.1}:${HTTP_UI_BIND_PORT-3000}:8080"
|
|
||||||
environment:
|
|
||||||
- "OLLAMA_API_BASE_URL=http://ollama:11434/api"
|
|
||||||
- 'WEBUI_SECRET_KEY=${UI_SECRET_KEY:-changeme}'
|
|
||||||
#extra_hosts:
|
|
||||||
# - host.docker.internal:host-gateway
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
ollama:
|
|
||||||
image: "ollama/ollama:${OLLAMA_IMAGE_TAG:-latest}"
|
|
||||||
container_name: ollama
|
|
||||||
#user: "${HOST_USER:-1000}"
|
|
||||||
volumes:
|
|
||||||
- "${HOST_OLLAMA_DATA_DIR:-./data}:/root/.ollama"
|
|
||||||
ports:
|
|
||||||
- "${HTTP_OLLAMA_BIND_ADDR:-127.0.0.1}:${HTTP_OLLAMA_BIND_PORT:-11434}:11434/tcp"
|
|
||||||
env_file: .env
|
|
||||||
restart: unless-stopped
|
|
||||||
logging:
|
|
||||||
driver: "json-file"
|
|
||||||
options:
|
|
||||||
max-size: "${LOG_MAX_SIZE:-5m}"
|
|
||||||
max-file: "${LOG_MAX_FILE:-5}"
|
|
Loading…
Reference in a new issue