You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Moving away from command-line syntax should be great for the project and systems that support compose are growing. (and CLI is still functional on docker and podman)
What do you think?
The text was updated successfully, but these errors were encountered:
First technical note to proposed Compose file - if you're using different then default user you must also use --data-dir parameter. As audioserve is defaulting it to ~/.audioserve, which for different user does not exist.
Also looks like you have there ser instead of user.
For the problem looks like it's about permissions - audiserve does not have access to that directory. Maybe related to ser instead user? - then default UID is used. So check user and access.
Now generally to running audioserve. You're right it's getting bit complicated as program envolves.
I thing what is missing is more detailed documentation on common usage scenarios and how to run audioserve in these.
Compose file is for sure good valid option (but I think compose has more value for running multiple services), so having solid example would be nice.
But there are other valid options:
shell script - for single service, as in our case, it looks quite similar to Compose file. Almost everything is just parameter to docker run or audioserve. And not everybody is keen of YAML syntax plus shell script can do more.
audioserve has it's own config file, where you can set all it's arguments and transcoding details can be set only in this config. It's not much documented unfortunately. This is what I'm using for my instance.
Hi,
Since both docker and podman are now using compose files I think it would be nice to do the same.
The benefits are:
As well as the opportunity to restructure the
README.md
file.Turning something like this:
Into something compatible with compose. I am not versed well with docker so I am still trying to write it.
Any suggestions?
Unfortunately I am stuck at:
Moving away from command-line syntax should be great for the project and systems that support compose are growing. (and CLI is still functional on
docker
andpodman
)What do you think?
The text was updated successfully, but these errors were encountered: