Skip to content

Commit 656baa0

Browse files
authored
Merge pull request #271 from jtagcat/patch-1
fixup: Dockerfile: reinstate location of config.toml
2 parents a5c6e2d + 34c708d commit 656baa0

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22
# See docs for details: https://goreleaser.com/customization/docker/
33

44
FROM alpine:3.10
5+
WORKDIR /app
6+
57
RUN wget -O /usr/bin/youtube-dl https://github.com/ytdl-org/youtube-dl/releases/latest/download/youtube-dl && \
68
chmod +x /usr/bin/youtube-dl && \
79
apk --no-cache add ca-certificates python ffmpeg tzdata
8-
COPY podsync /podsync
10+
COPY podsync /app/podsync
11+
912

10-
ENTRYPOINT ["/podsync"]
13+
ENTRYPOINT ["/app/podsync"]
1114
CMD ["--no-banner"]

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ services:
99
- 80:80
1010
volumes:
1111
- ./data:/data/
12-
- ./config.toml:/config.toml
12+
- ./config.toml:/app/config.toml

0 commit comments

Comments
 (0)