First commit

This commit is contained in:
bigboxuser
2025-08-31 13:37:36 +03:00
commit 4fcd91dd04
13 changed files with 222 additions and 0 deletions

17
dozzle/docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
# Run with docker compose up -d
services:
dozzle:
image: amir20/dozzle:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- 192.168.0.131:8009:8080
environment:
# Uncomment to enable container actions (stop, start, restart). See https://dozzle.dev/guide/actions
# - DOZZLE_ENABLE_ACTIONS=true
#
# Uncomment to allow access to container shells. See https://dozzle.dev/guide/shell
- DOZZLE_ENABLE_SHELL=true
#
# Uncomment to enable authentication. See https://dozzle.dev/guide/authentication
# - DOZZLE_AUTH_PROVIDER=simple

View File

@@ -0,0 +1,14 @@
services:
freshrss:
image: lscr.io/linuxserver/freshrss:latest
container_name: freshrss
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Bucharest
- HTTP_PROXY=127.0.0.1:9050
volumes:
- /home/bigboxuser/docker/freshrss/config:/config
ports:
- 192.168.0.131:8011:80
restart: unless-stopped

23
gitea/docker-compose.yml Normal file
View File

@@ -0,0 +1,23 @@
version: "3"
networks:
gitea:
external: false
services:
server:
image: docker.gitea.com/gitea:nightly
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
restart: always
networks:
- gitea
volumes:
- ./gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "3000:3000"
- "222:22"

15
karakeep/.env Normal file
View File

@@ -0,0 +1,15 @@
KARAKEEP_VERSION=release
CRAWLER_VIDEO_DOWNLOAD=true
NEXTAUTH_SECRET=super_random_string
MEILI_MASTER_KEY=another_random_string
NEXTAUTH_URL=http://192.168.0.131:5000
#OLLAMA_BASE_URL=http://172.17.0.1:11434
OLLAMA_BASE_URL=http://192.168.0.131:11434
OLLAMA_KEEP_ALIVE=45m
INFERENCE_TEXT_MODEL=qwen2.5:0.5b
EMBEDDING_TEXT_MODEL=all-minilm:22m
INFERENCE_JOB_TIMEOUT_SEC=3000
INFERENCE_FETCH_TIMEOUT_SEC=30000
OLLAMA_LOAD_TIMEOUT=30m
INFERENCE_LANG=english
INFERENCE_CONTEXT_LENGTH=1024

View File

@@ -0,0 +1,51 @@
services:
web:
image: ghcr.io/karakeep-app/karakeep:${KARAKEEP_VERSION:-release}
restart: unless-stopped
volumes:
# By default, the data is stored in a docker volume called "data".
# If you want to mount a custom directory, change the volume mapping to:
# - /path/to/your/directory:/data
- data:/data
ports:
- 5000:3000
env_file:
- .env
environment:
MEILI_ADDR: http://meilisearch:7700
BROWSER_WEB_URL: http://chrome:9222
# OPENAI_API_KEY: ...
# You almost never want to change the value of the DATA_DIR variable.
# If you want to mount a custom directory, change the volume mapping above instead.
DATA_DIR: /data # DON'T CHANGE THIS
CRAWLER_NUM_WORKERS: 2
CRAWLER_FULL_PAGE_SCREENSHOT: "true"
CRAWLER_SCREENSHOT_TIMEOUT_SEC: 15
CRAWLER_FULL_PAGE_ARCHIVE: "true"
CRAWLER_JOB_TIMEOUT_SEC: 120
CRAWLER_VIDEO_DOWNLOAD: "true"
CRAWLER_VIDEO_DOWNLOAD_MAX_SIZE: 500
CRAWLER_VIDEO_DOWNLOAD_TIMEOUT_SEC: 720
chrome:
image: gcr.io/zenika-hub/alpine-chrome:123
restart: unless-stopped
command:
- --no-sandbox
- --disable-gpu
- --disable-dev-shm-usage
- --remote-debugging-address=0.0.0.0
- --remote-debugging-port=9222
- --hide-scrollbars
meilisearch:
image: getmeili/meilisearch:v1.13.3
restart: unless-stopped
env_file:
- .env
environment:
MEILI_NO_ANALYTICS: "true"
volumes:
- meilisearch:/meili_data
volumes:
meilisearch:
data:

1
karakeep/login Normal file
View File

@@ -0,0 +1 @@
theo@example.com | theo

View File

@@ -0,0 +1,14 @@
services:
keepassxc:
image: lscr.io/linuxserver/keepassxc:latest
container_name: keepassxc
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Bucharest
volumes:
- /user/bigboxuser/docker/keepassxc/config:/config
ports:
- 3010:3000
- 3011:3001
restart: unless-stopped

View File

@@ -0,0 +1,12 @@
version: '3.8'
services:
netdata:
image: netdata/netdata
container_name: netdata
ports:
- "192.168.0.131:19999:19999"
volumes:
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
restart: always

Binary file not shown.

8
ollama-webui/docker-compose Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
docker-compose up -d
models=("smollm2:135m" "all-minilm:22m" "nomic-embed-text" "qwen2.5:0.5b" "qwen3:0.6b" "gemma3:1b" "hf.co/mradermacher/DeepSeek-R1-Distill-Qwen-1.5B-Fully-Uncensored-i1-GGUF:Q4_K_S")
for model in "${models[@]}"; do
docker exec $(docker ps | grep ollama | awk '{print $1}') bash -c "ollama pull $model"
done
echo ""
echo "---OLLAMA INIT DONE !"

View File

@@ -0,0 +1,28 @@
services:
ollama:
image: ollama/ollama:latest
ports:
- "192.168.0.131:11434:11434" # Exposing API port
environment:
- OLLAMA_HOST=0.0.0.0:11434
restart: unless-stopped # Auto-restart
open-webui:
image: ghcr.io/open-webui/open-webui:main
container_name: open-webui
volumes:
- open-webui:/app/backend/data
depends_on:
- ollama
ports:
- 192.168.0.131:3001:8080
environment:
- 'OLLAMA_BASE_URL=http://192.168.0.131:11434'
- 'WEBUI_SECRET_KEY='
#extra_hosts:
#- host.docker.internal:host-gateway
restart: unless-stopped
volumes:
ollama: {}
open-webui: {}

View File

@@ -0,0 +1,20 @@
services:
speedtest-tracker:
image: lscr.io/linuxserver/speedtest-tracker:latest
restart: unless-stopped
container_name: speedtest-tracker
ports:
- 8765:80
- 8766:443
environment:
- APP_TIMEZONE=Europe/Bucharest
- DISPLAY_TIMEZONE=Europe/Bucharest
- APP_DEBUG=true
- SPEEDTEST_SCHEDULE=0 0,6,12,18 * * *
- PUID=1000
- PGID=1000
- APP_KEY=base64:zOyskJ5laHK2RGezDV38pgfNoDJ0N9g0ROfqQvNazJ0=
- DB_CONNECTION=sqlite
volumes:
- /home/bigboxuser/docker/speedtest-tracker/config:/config
- /path/to-custom-ssl-keys:/config/keys

View File

@@ -0,0 +1,19 @@
services:
syncthing:
image: lscr.io/linuxserver/syncthing:latest
container_name: syncthing
# hostname: syncthing #optional
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/EET
volumes:
- ./syncthing/config:/config
- ./data1:/data1
- ./data2:/data2
ports:
- 8384:8384
- 22000:22000/tcp
- 22000:22000/udp
- 21027:21027/udp
restart: unless-stopped