#Download custom app

13 messages · Page 1 of 1 (latest)

devout gust
#

Hey, anyone know how to download a custom app off of hub.docker.com?

Looking to download this app: https://hub.docker.com/r/azuracast/azuracast
However whenever i enter "docker pull azuracast/azuracast" as it says to on the hub into the docker CLI of custom install, it gives me the error of:

Something is wrong when trying to parse the command line.

https://media.discordapp.net/attachments/1019493411146956850/1059177747680874607/image.png
https://media.discordapp.net/attachments/1019493411146956850/1059177748083515483/image.png?width=1440&height=602

viscid viper
#

It works only for docker run ... command.

devout gust
viscid viper
#

yes

devout gust
viscid viper
#

they are different commands. docker pull pulls image. docker run runs container.

devout gust
viscid viper
#

Docker images are not distributable. After docker pull the image gets stored in a local permission protected path. When executing docker run it looks into this path for the specified image if it is pulled.

devout gust
viscid viper
#

Theoretically, yes.

However you want to include more arguments to the docker run azuracast/azuracas command. Such as the port you want to expose for access, the file/folder you want to bind for data persistence, etc. You need to figure out the concrete args to add because they are different from app to app.

That's why we have CasaOS AppStore that includes tested arguments so people can run an app flawlessly out of box.

devout gust
viscid viper
#

It should be provided in the description of each image. In this case, you should contact whoever provided azuracast/azuracast for any argument needed for the image to run.

devout gust