Kthulu120 / liquid_dl

Liquid-dl is a simple tool for utlities such as FFMPEG, youtube-dl, and scdl. It provides a simple framework with simple point and click options allowing users to just click on what they need and use the bare minimum commands to get the results needed.
MIT License
73 stars 7 forks source link

FreeNAS Plugin? #8

Open Nerdy314159265 opened 7 years ago

Nerdy314159265 commented 7 years ago

I'd like to put in a feature request for a FreeNAS plugin, at least until Docker is added to FreeNAS.

naq90 commented 7 years ago

This would be brilliant!

Kthulu120 commented 7 years ago

After finishing the youtube-dl aspect of the application today I'll start work on it

Kthulu120 commented 7 years ago

@Nerdy314159265 , @naq90 let me know if this helps for freeNAS mappings

FROM linuxserver/liquid_dl:latest
LABEL org.freenas.interactive="false"                                   \
      org.freenas.version="1.0.1"                                       \
      org.freenas.upgradeable="true"                                    \
      org.freenas.expose-ports-at-host="true"                           \
      org.freenas.autostart="true"                                      \
      org.freenas.web-ui-protocol="http"                                \
      org.freenas.web-ui-port="2772"                                    \
      org.freenas.web-ui-path=""                                        \
      org.freenas.port-mappings="2773:2772/tcp"                         \
      org.freenas.volumes="[                                            \
          {                                                             \
              \"name\": \"/config\",                                    \
              \"descr\": \"Config storage space\"                       \
          }                                                             \
      ]"                                                                \
      org.freenas.settings="[                                           \
          {                                                             \
              \"env\": \"TZ\",                                          \
              \"descr\": \"Timezone - eg Europe/London\",               \
              \"optional\": true                                        \
          },                                                            \
          {                                                             \
              \"env\": \"PGID\",                                        \
              \"descr\": \"GroupID\",                                   \
              \"optional\": true                                        \
          },                                                            \
          {                                                             \
              \"env\": \"PUID\",                                        \
              \"descr\": \"UserID\",                                    \
              \"optional\": true                                        \
         }                                                              \
      ]"
snaqvi1 commented 7 years ago

@Kthulu120 Thank you for this! Making a plugin is waaay beyond my abilities, however. But I'm going to post this to the freenas forums and see if somebody can take a crack at it. Thanks!