Skip to content

Releases: bigsk1/podcast-ai

Version 20241129-993913c

29 Nov 21:21
Compare
Choose a tag to compare

Version 20241129-993913c

Release Highlights
🎉 Latest version of podcast-ai
🚀 Key updates include:

refactor code to work with anthropics new SDK(d2c701d)
allow to run in wsl and windows command prompt, docker compose now handles both(993913c)

To use:

docker pull ghcr.io/bigsk1/podcast-ai:20241129-993913c

Notes
This release is tied to the specific Docker image tag: 20241129-993913c
Use latest or main tags for the most up-to-date builds, but they may differ from this release over time.

docker run -d --name podcast-app \
  --env-file .env \
  --add-host=host.docker.internal:host-gateway \
  -e VITE_API_URL=http://localhost:5000 \
  -e PYTHONUNBUFFERED=1 \
  -e HOST=0.0.0.0 \
  -e PORT=5000 \
  -p 5000:5000 \
  -p 5173:5173 \
  -v $(pwd)/public/audio:/app/public/audio \
  -v $(pwd)/output:/app/output \
  --restart unless-stopped \
  --health-cmd="curl -f http://localhost:5000/health || exit 1" \
  --health-interval=30s \
  --health-timeout=10s \
  --health-retries=3 \
  bigsk1/podcast-ai:latest