Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle paths in nerdctl compose subcommands #1332

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/go/nerdctl-stub/parse_args.go
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,12 @@ func init() {
registerArgHandler("compose", "-f", filePathArgHandler)
registerArgHandler("compose", "--project-directory", filePathArgHandler)
registerArgHandler("compose", "--env-file", filePathArgHandler)
for _, sc := range []string{"build", "config", "down", "kill", "logs", "ps", "pull", "push", "up"} {
// No `-f` option because they aren't in the help for any of the `docker compose X` subcommands.
registerArgHandler("compose " + sc, "--file", filePathArgHandler)
registerArgHandler("compose " + sc, "--project-directory", filePathArgHandler)
registerArgHandler("compose " + sc, "--env-file", filePathArgHandler)
}
registerArgHandler("container run", "--cosign-key", filePathArgHandler)
registerArgHandler("container run", "--volume", volumeArgHandler)
registerArgHandler("container run", "-v", volumeArgHandler)
Expand Down