Page 1 of 1

docker start sabnzbd does not accept -f

Posted: August 31st, 2022, 9:19 am
by mstumpel
Hi
I installed sabnzbd in a docker container on my NAS.
When I try to change the default path instead of the standard /config with the command
docker start sabnzbd -f /srv/dev-disk-by-uuid-b0f9422a-2f96-a344-b17d-35d581e8e81a/usenet

This command gives me the following error: unknown shorthand flag: 'f' in -f

What is wrong with this ? ANy idea how to solve or is there an alternative way to iniodcate the default path?

Regards

Re: docker start sabnzbd does not accept -f

Posted: August 31st, 2022, 10:51 am
by sander
you're feeding that "-f ..." to docker, not sabnzbd.

Proof

Code: Select all

$ docker start blala -f /tmp/blabla
unknown shorthand flag: 'f' in -f
See 'docker start --help'.
It's a docker / image question how to specify a parameter. Consult the docker or image documentation.