A simple and reliable open-source podcast hosting platform
  • Rust 86.7%
  • CSS 8%
  • Shell 3.1%
  • Just 2%
  • Dockerfile 0.2%
Find a file
Rik Huijzer 85b1a03af5
All checks were successful
ci / test (push) Successful in 1m27s
ci / build (push) Successful in 2m25s
fix: increase the request body limit
2026-04-18 10:31:17 +02:00
.cargo build: set target cpu generic 2026-04-17 09:45:46 +02:00
.github/workflows build: commit Cargo.lock 2026-04-17 09:21:03 +02:00
bin fix: make pod-edit more robust 2026-04-18 10:25:28 +02:00
src fix: increase the request body limit 2026-04-18 10:31:17 +02:00
tests fix: change & to & 2026-04-17 15:18:03 +02:00
.gitignore build: commit Cargo.lock 2026-04-17 09:21:03 +02:00
Cargo.lock fix: generate v5 GUID 2026-04-18 08:26:51 +02:00
Cargo.toml fix: generate v5 GUID 2026-04-18 08:26:51 +02:00
justfile feat: category input (#9) 2026-04-16 18:04:31 +02:00
LICENSE feat: feed (#7) 2026-04-16 08:30:01 +02:00
README.md fix: switch back to rusqlite bundled 2026-04-16 08:51:15 +02:00

podlite

A simple and reliable open-source podcast hosting platform.

Usage

services:
  podlite:
    image: 'git.huijzer.xyz/rik/podlite'
    container_name: 'podlite'
    environment:
      PODLITE_DOMAIN: 'example.com'
    ports:
      - '3000:3000'
    volumes:
      - './data:/data:rw'
    healthcheck:
      test: ['CMD', 'podlite', 'check-health']
    logging:
      driver: 'json-file'
      options:
        max-size: '10m'
        max-file: '10'
    restart: 'unless-stopped'