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
docker start sabnzbd does not accept -f
Forum rules
Help us help you:
Help us help you:
- Are you using the latest stable version of SABnzbd? Downloads page.
- Tell us what system you run SABnzbd on.
- Adhere to the forum rules.
- Do you experience problems during downloading?
Check your connection in Status and Interface settings window.
Use Test Server in Config > Servers.
We will probably ask you to do a test using only basic settings. - Do you experience problems during repair or unpacking?
Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
Re: docker start sabnzbd does not accept -f
you're feeding that "-f ..." to docker, not sabnzbd.
Proof
It's a docker / image question how to specify a parameter. Consult the docker or image documentation.
Proof
Code: Select all
$ docker start blala -f /tmp/blabla
unknown shorthand flag: 'f' in -f
See 'docker start --help'.