Inrixia / Floatplane-Downloader

Project for automatically organizing and downloading Floatplane videos for plex.
https://monitor.spookelton.net/public-dashboards/db0aec66747b4950b01b128916eb737e
GNU Affero General Public License v3.0
152 stars 41 forks source link

Wiki mistake #163

Closed Fma965 closed 1 year ago

Fma965 commented 1 year ago

https://github.com/Inrixia/Floatplane-Downloader/blob/master/wiki/docker.md

If you want a interactive session you need to set headless to false, so initial setup should be

 $ docker run -it \
        -v [path]:/fp/db \
        -v [path]:/fp/videos \
        -e headless="FALSE" \
        -e runQuickstartPrompts=true \
        --restart unless-stopped \
        inrix/floatplane-downloader

NOT

 $ docker run -it \
        -v [path]:/fp/db \
        -v [path]:/fp/videos \
        -e headless="TRUE" \
        -e runQuickstartPrompts=true \
        --restart unless-stopped \
        inrix/floatplane-downloader
Inrixia commented 1 year ago

Default is no headless so you can actually just remove the argument.

Feel free to open a PR to fix this, otherwise Ill eventually get to it. Thanks for noticing it

Fma965 commented 1 year ago

Ofcourse, i just spend like 10 minutes trying to figure out why interactive wasn't working 😆

Fma965 commented 1 year ago

It's still wrong on the master branch though, which is where most people are going to read the instructions.

Hence why i PR'd it for both. (as it's not a code change)