Compare commits

..

No commits in common. "72804b003945a482667f7859d042100951d7906f" and "e45d794be61582268c38445cca15697f405ee622" have entirely different histories.

69 changed files with 45 additions and 7 deletions

View File

@ -0,0 +1,38 @@
services:
llama-cpp:
image: ghcr.io/ggml-org/llama.cpp:server-cuda
container_name: llama-cpp
restart: unless-stopped
networks:
- traefik
volumes:
- /pwspool/software/llama-cpp/models:/models
# We moved your environment variables here to guarantee they are applied
command:
- "--model"
- "/models/Qwen3.5-35B-A3B-UD-IQ2_XXS.gguf"
- "--host"
- "0.0.0.0"
- "--port"
- "8080"
- "--n-gpu-layers"
- "99"
- "--ctx-size"
- "8192"
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities: [gpu]
labels:
- "traefik.enable=true"
- "traefik.http.routers.llama.rule=Host(`llm.whitney.rip`)"
- "traefik.http.routers.llama.entrypoints=websecure"
- "traefik.http.routers.llama.tls.certresolver=lets-encrypt"
- "traefik.http.services.llama.loadbalancer.server.port=8080"
networks:
traefik:
external: true

View File

@ -2,17 +2,17 @@
# List of container paths to start # List of container paths to start
declare -a CONTAINERS=( declare -a CONTAINERS=(
"home/homeassistant"
"media/immich" "media/immich"
"media/plex" "media/plex"
"media/transmission" "media/transmission"
"misc/homepage" "misc/homepage"
"smarthome/homeassistant" "productivity/code-server"
"software-development/design/excalidraw" "productivity/excalidraw"
"software-development/project-management/planka" "productivity/planka"
"software-development/documentation/code-server" "software-development/gitea"
"software-development/infrastructure/gitea" "software-development/grafana"
"software-development/infrastructure/grafana" "software-development/traefik"
"software-development/infrastructure/traefik"
) )
# Start all containers in one call to start-containers.sh # Start all containers in one call to start-containers.sh