creating parameter file in docker installation #122
-
|
In docker installation, while using command <sudo docker run davidfrantz/force force-parameter /data/force/param LEVEL2 1>, I am getting the following error: too many non-optional arguments. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 30 replies
-
|
Hey @krishnakumarkkp, |
Beta Was this translation helpful? Give feedback.
-
|
Hi @krishnakumarkkp , @Florian-Katerndahl is spot-on. To elaborate a bit: the usage changed in v. 3.7 to a more Unix-style usage using options. The trailing I assume that you are referring to some of the tutorials. There is always an indication for the version number for which the tutorial was made. New versions might need some adaptation (as in this case). Cheers, |
Beta Was this translation helpful? Give feedback.
Hi @krishnakumarkkp ,
@Florian-Katerndahl is spot-on.
To elaborate a bit: the usage changed in v. 3.7 to a more Unix-style usage using options. The trailing
1is now replaced by the-c(compact) option. Also, you now have to specify the output file name, which eliminates the necessity to rename the generated parameter file afterwards (and prevents you from accidentally overwriting previous parameter files when not renaming the files).I assume that you are referring to some of the tutorials. There is always an indication for the version number for which the tutorial was made. New versions might need some adaptation (as in this case).
Cheers,
David