wiserain / docker-flexget

Docker image for running Flexget

Home Page:https://hub.docker.com/r/wiserain/flexget

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to add curl command

PDSCi996 opened this issue · comments

Thank you very much for mirroring.
I now want to use flexget to cooperate with youtube-dl to automatically download youtube videos, and I have automatically grabbed the updated rss, but the log prompts "Stdout: /bin/sh: curl: not found" when pushing, and I checked that the possible reason is that the mirror is not found. Caused by the curl command.
Since I don't know much about docker, I would like to ask how to install or package curl commands into the image you made.

Move into docker container by docker exec -it <container name or hash id> bash then type command apk add --no-cache curl to install curl. However, this will be removed/roll-backed if you recreate the container.

If you want this to be persist, 1) build your own docker image with packages you wish to include , 2) use docker commit feature, or 3) use cont.init-d. The last one is described in README.md

Move into docker container by docker exec -it <container name or hash id> bash then type command apk add --no-cache curl to install curl. However, this will be removed/roll-backed if you recreate the container.

If you want this to be persist, 1) build your own docker image with packages you wish to include , 2) use docker commit feature, or 3) use cont.init-d. The last one is described in README.md

Thank you very much for your help, the problem has been solved, I manually installed the curl command in the container.