feat: Improve Docker setup

- Remember credentials between container starts
- Use same uid/gid in container as on host
This commit is contained in:
jkemming 2021-11-17 21:36:35 +01:00
parent 7f8572885a
commit 2c88a5cd56
2 changed files with 1 additions and 2 deletions

View File

@ -14,6 +14,5 @@ FROM base
COPY --from=builder /install /usr/local
COPY zspotify /app
COPY *zs_config.json /
WORKDIR /app
ENTRYPOINT ["/usr/local/bin/python", "__main__.py"]

View File

@ -65,7 +65,7 @@ Pull the official docker image (automatically updates):
Or build the docker image yourself from the Dockerfile:
docker build -t zspotify .
Create and run a container from the image:
docker run --rm -v "$PWD/ZSpotify Music:/ZSpotify Music" -v "$PWD/ZSpotify Podcasts:/ZSpotify Podcasts" -it zspotify
docker run --rm -u $(id -u):$(id -g) -v "$PWD/zspotify:/app" -v "$PWD/zs_config.json:/zs_config.json" -v "$PWD/ZSpotify Music:/ZSpotify Music" -v "$PWD/ZSpotify Podcasts:/ZSpotify Podcasts" -it zspotify
```
### Google Colab