-
-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot import last.fm scrobble history #359
Comments
I'm also facing this exact same scenario and I think we just need an updated docker image to help out. a7dcf6d introduces a /venv encapsulation that's not currently taken account of in the resulting container. If you either - python3 -m venv /venv && \
- . /venv/bin/activate && \ Then you should be able to I was able to import tracks after this work-around. |
appreciate the digging. I used the first option ( |
Can we get an update on this? Docker Hub image is now 8 months old... |
I've also been trying to import lastfm and spotify history. I have the container set-up using a compose.yml file and running. I would really like a way to import those files and then continue scrobbling to maloja. |
FYI I needed to move this image to another host and needed to recreate. This time, I attempted to use the other method of removing
from the Dockerfile and then
I don't need to re-import, but figured I'd drop this here in case it helps anyone (I really hope this project can be resurrected, forked, or if there is another self-hosted scrobbler please point me in that direction) |
I started with a compose file that calls for the image stored in Dockerhub:
and then stopped container and used the import instructions to get into the container shell:
docker run -it --entrypoint sh -v $PWD/maloja/data:/mljdata -e MALOJA_DATA_DIRECTORY=/mljdata -e PUID=1000 -e PGID=1000 krateng/maloja
and attempted
maloja import recenttrack-xyz.json
, exported from ghan64 site. this returns:File could not be identified as a valid import source
I then noticed that the dockerhub image is 5 months old and the change for ghan's site looks like it's a week old
so I cloned the repo and built the image myself using
docker build .
when I shell into this container, the command
maloja import xyz.json
is not recognized:sh: maloja: not found
so I am stuck on importing my listening history. Dockerhub seems to be too old and building the image locally also does not work correctly. I've exhausted my technical understanding at this point. What am I doing wrong? Help would be much appreciated
The text was updated successfully, but these errors were encountered: