mosswg / dropout-dl

A tool for downloading dropout.tv episodes
GNU General Public License v3.0
28 stars 7 forks source link

Requesting login file when it exists. #2

Closed Arguens89 closed 1 year ago

Arguens89 commented 1 year ago

Describe the bug The docker application asking me for login file even when login file exists.

To Reproduce Steps to reproduce the behavior: I've tried to follow the steps, compiled the docker, filled in the variables, filled in the login file.

Expected behavior The docker application asking me for login file even when login file exists.

Screenshots If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information): Ubuntu 22.04.2 LTS" Docker

Smartphone (please complete th cmd_3p6DT0ib4k e following information):

Additional context Thank you for doing this program/docker style. I would love for it to work.

mosswg commented 1 year ago

The docker command you used tells docker that the login file is at the path ./login but you cat out the file ./login/login. The solution is to either change that part of the docker command from -v $PWD/login:/app/login to -v $PWD/login/login:/app/login or move your login file to ./login. Please let me know if this fixes your issue or if there is anything else I can help with.

Arguens89 commented 1 year ago

That was my bad. Thank you for clarification. I didn't understand you can volume mount only one file. Thank you for your help and I apologize.