ASP.NET Core Web API for PlaylistShare - share and collaborate on Yandex Music playlists. This image
is the backend host: it authenticates users, talks to Yandex Music, and stores the shared playlists,
collaboration logs and favorites. Built on .NET 10. It pairs with the playlistshare-pwa front end.
The database is selectable at runtime via Database__Provider: SQL Server (default) or PostgreSQL.
Pending EF Core migrations are applied automatically on startup, so a fresh deployment self-provisions its
schema. It connects to a SQL Server / PostgreSQL that you provide; it does not bundle a database.
mcr.microsoft.com/dotnet/aspnet:10.0.docker run -p 7001:8080 \
-e ConnectionStrings__DefaultConnection="Server=...;Database=PlaylistShare;User Id=...;Password=...;TrustServerCertificate=True" \
-e Jwt__Key="a-long-stable-secret" \
-e Database__Provider=SqlServer \
-v playlistshare-keys:/keys -e DataProtection__KeysPath=/keys \
frigat/playlistshare-api:latest
# API on http://localhost:7001
Environment variables:
ConnectionStrings__DefaultConnection (required) - connection string for the chosen provider.Jwt__Key (required) - stable secret used to sign auth tokens.Database__Provider (optional) - SqlServer (default) or Postgres. For Postgres, supply a matching
Npgsql connection string.DataProtection__KeysPath (optional) - path to persist the Data Protection key ring; mount a volume
here so keys survive restarts. Defaults to /keys.For a full stack (API + PWA + optional containerized Postgres) use the Compose files in the repository.
latest - the most recent release.<version> (e.g. 1.0.0) - a pinned version (recommended for production).frigat/playlistshare-pwaghcr.io/jrfrigat/playlistshare-apiContent type
Image
Digest
sha256:219150bc9…
Size
125.8 MB
Last updated
6 days ago
docker pull frigat/playlistshare-api