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
Currently nvidia-docker-compose passes all command line arguments aside from -f onto the underlying docker-compose. But in the process, it ends up capturing options like -h, --help and any -f option, regardless of where it appears. This is quite inconvenient as nvidia-docker-compose --help do not provide any useful help menu (would make sense to show the help for docker-compose), and commands with -f as an option for the subcommands (e.g. docker-compose logs -f) doesn't work properly. The argparsing needs to be improved.
The text was updated successfully, but these errors were encountered:
Currently
nvidia-docker-compose
passes all command line arguments aside from-f
onto the underlyingdocker-compose
. But in the process, it ends up capturing options like-h, --help
and any-f
option, regardless of where it appears. This is quite inconvenient asnvidia-docker-compose --help
do not provide any useful help menu (would make sense to show the help fordocker-compose
), and commands with-f
as an option for the subcommands (e.g.docker-compose logs -f
) doesn't work properly. The argparsing needs to be improved.The text was updated successfully, but these errors were encountered: