A simple and reliable open-source podcast hosting platform
- Rust 86.7%
- CSS 8%
- Shell 3.1%
- Just 2%
- Dockerfile 0.2%
| .cargo | ||
| .github/workflows | ||
| bin | ||
| src | ||
| tests | ||
| .gitignore | ||
| Cargo.lock | ||
| Cargo.toml | ||
| justfile | ||
| LICENSE | ||
| README.md | ||
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'