Initial push

This commit is contained in:
2025-03-31 20:07:57 +02:00
commit 581c6a074b
28 changed files with 2323 additions and 0 deletions

17
run-docker.sh Normal file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
# Export current user ID and group ID to be used by docker-compose
export UID=$(id -u)
export GID=$(id -g)
# Make sure audio directory exists
mkdir -p ./src/audio
# Stop any existing container
docker-compose down
# Build and start the container
docker-compose up -d
# Show logs
docker-compose logs -f