added a few scripts I needed

main
Will King 2 years ago
parent 2b09a34157
commit a6fdff1e9d

@ -2,4 +2,4 @@
#
#a script to compile a latex file based in distrobox
distrobox enter latex2 -- ~/bin/compiletex $@
distrobox enter texlive -- ~/bin/compiletex $@

@ -0,0 +1,6 @@
#!/bin/bash
INPUT_FILE="$1"
OUTPUT_FILE="${INPUT_FILE%.ogg}.wav"
ffmpeg -i "$INPUT_FILE" "$OUTPUT_FILE"

@ -0,0 +1,10 @@
podman run --rm \
-p 127.0.0.1:3000:8080 \
--network slirp4netns:allow_host_loopback=true \
--add-host=ollama.local:10.0.2.2 \
--env 'OLLAMA_BASE_URL=http://ollama.local:11434' \
--env 'ANONYMIZED_TELEMETRY=False' \
-v open-webui:/app/backend/data \
--label io.containers.autoupdate=registry \
--name open-webui \
ghcr.io/open-webui/open-webui:main
Loading…
Cancel
Save