[READ-ONLY] Mirror of https://github.com/FoxxMD/multi-scrobbler. Scrobble plays from multiple sources to multiple clients docs.multi-scrobbler.app
deezer docker jellyfin koito lastfm listenbrainz maloja mopidy mpris music music-assistant plex scrobble self-hosted spotify subsonic tautulli youtube-music
0

Configure Feed

Select the types of activity you want to include in your feed.

feat(docker): Add proper opencontainer labels

FoxxMD (Apr 16, 2026, 2:05 AM UTC) d551c856 75bd4a04

+15 -2
+13 -2
Dockerfile
··· 93 93 94 94 FROM base AS app 95 95 96 - LABEL org.opencontainers.image.source="https://github.com/FoxxMD/multi-scrobbler" 97 - 98 96 COPY --chown=abc:abc *.json *.js *.ts index.html ./ 99 97 COPY --chown=abc:abc patches ./patches 100 98 # frontend build from vite/esbuild ··· 125 123 && npx @usex/prune-mod -w \ 126 124 && rm -rf /root/.cache 127 125 126 + ARG BUILD_DATE=0 127 + 128 + LABEL org.opencontainers.image.version="$APP_BUILD_VERSION" \ 129 + org.opencontainers.image.source="https://github.com/FoxxMD/multi-scrobbler" \ 130 + org.opencontainers.image.documentation="https://docs.multi-scrobbler.app" \ 131 + org.opencontainers.image.description="Scrobble from multiple sources to multiple clients" \ 132 + org.opencontainers.image.title="Multi-Scrobbler" \ 133 + org.opencontainers.image.licenses="MIT" \ 134 + org.opencontainers.image.authors="FoxxMD" \ 135 + org.opencontainers.image.created="$BUILD_DATE" \ 136 + org.opencontainers.image.url="https://docs.multi-scrobbler.app" \ 137 + maintainer="FoxxMD" \ 138 + build_version="$APP_BUILD_VERSION" 128 139 129 140 ARG webPort=9078 130 141 ENV PORT=$webPort
+2
docker-compose.dev.yml
··· 4 4 multi-scrobbler: 5 5 build: 6 6 context: . 7 + args: 8 + BUILD_DATE: "${BUILD_DATE}" 7 9 env_file: 8 10 - path: ./.env 9 11 required: false