[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.

build(vscode): Update devcontainer to use compose stack with valkey for caching integration

FoxxMD (Sep 11, 2025, 7:14 PM UTC) 39bc9cd4 63b60124

+32 -1
+25
.devcontainer/compose.yml
··· 1 + version: '3.7' 2 + services: 3 + # Update this to the name of the service you want to work with in your docker-compose.yml file 4 + app: 5 + # Uncomment if you want to override the service's Dockerfile to one in the .devcontainer 6 + # folder. Note that the path of the Dockerfile and context is relative to the *primary* 7 + # docker-compose.yml file (the first in the devcontainer.json "dockerComposeFile" 8 + # array). The sample below assumes your primary file is in the root of your project. 9 + # 10 + # build: 11 + # context: . 12 + # dockerfile: .devcontainer/Dockerfile 13 + 14 + image: mcr.microsoft.com/devcontainers/javascript-node:1-20-bookworm 15 + 16 + volumes: 17 + # Update this to wherever you want VS Code to mount the folder of your project 18 + - ..:/workspaces:cached 19 + command: sleep infinity 20 + 21 + valkey: 22 + image: valkey/valkey 23 + env_file: 24 + - path: ./.env 25 + required: false
+7 -1
.devcontainer/devcontainer.json
··· 3 3 { 4 4 "name": "Node.js", 5 5 // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile 6 - "image": "mcr.microsoft.com/devcontainers/javascript-node:1-20-bookworm", 6 + "dockerComposeFile": [ 7 + "compose.yml" 8 + ], 9 + 10 + "service": "app", 11 + 12 + "workspaceFolder": "/workspaces", 7 13 8 14 // Features to add to the dev container. More info: https://containers.dev/features. 9 15 // "features": {},