mirror of
https://github.com/mxpv/podsync.git
synced 2024-05-11 05:55:04 +00:00
readd WORKDIR /app
`config.toml` uses relative path, from the current directory, `$PWD` by default is `/`. commitf337f6c8b1
removed `WORKDIR /app`, and `/config.toml` was used instead of `/app/config.toml`. The change was breaking, unexpected and undocumented. As users already mount `/app/config.toml`, revert to using it. Revert16315c0e12
(what was workaround for breaking change, though there is no need to break anything here) Closes #270 + requested: podsync located again at /app/podsync, instead of /podsync
This commit is contained in:
@@ -2,10 +2,13 @@
|
|||||||
# See docs for details: https://goreleaser.com/customization/docker/
|
# See docs for details: https://goreleaser.com/customization/docker/
|
||||||
|
|
||||||
FROM alpine:3.10
|
FROM alpine:3.10
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
RUN wget -O /usr/bin/youtube-dl https://github.com/ytdl-org/youtube-dl/releases/latest/download/youtube-dl && \
|
RUN wget -O /usr/bin/youtube-dl https://github.com/ytdl-org/youtube-dl/releases/latest/download/youtube-dl && \
|
||||||
chmod +x /usr/bin/youtube-dl && \
|
chmod +x /usr/bin/youtube-dl && \
|
||||||
apk --no-cache add ca-certificates python ffmpeg tzdata
|
apk --no-cache add ca-certificates python ffmpeg tzdata
|
||||||
COPY podsync /podsync
|
COPY podsync /app/podsync
|
||||||
|
|
||||||
ENTRYPOINT ["/podsync"]
|
|
||||||
|
ENTRYPOINT ["/app/podsync"]
|
||||||
CMD ["--no-banner"]
|
CMD ["--no-banner"]
|
||||||
|
@@ -9,4 +9,4 @@ services:
|
|||||||
- 80:80
|
- 80:80
|
||||||
volumes:
|
volumes:
|
||||||
- ./data:/data/
|
- ./data:/data/
|
||||||
- ./config.toml:/config.toml
|
- ./config.toml:/app/config.toml
|
||||||
|
Reference in New Issue
Block a user