We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a5c6e2d + 34c708d commit 656baa0Copy full SHA for 656baa0
Dockerfile
@@ -2,10 +2,13 @@
2
# See docs for details: https://goreleaser.com/customization/docker/
3
4
FROM alpine:3.10
5
+WORKDIR /app
6
+
7
RUN wget -O /usr/bin/youtube-dl https://github.com/ytdl-org/youtube-dl/releases/latest/download/youtube-dl && \
8
chmod +x /usr/bin/youtube-dl && \
9
apk --no-cache add ca-certificates python ffmpeg tzdata
-COPY podsync /podsync
10
+COPY podsync /app/podsync
11
12
-ENTRYPOINT ["/podsync"]
13
+ENTRYPOINT ["/app/podsync"]
14
CMD ["--no-banner"]
docker-compose.yml
@@ -9,4 +9,4 @@ services:
- 80:80
volumes:
- ./data:/data/
- - ./config.toml:/config.toml
+ - ./config.toml:/app/config.toml
0 commit comments