-
Notifications
You must be signed in to change notification settings - Fork 485
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
Missing config
command
#106
Comments
This is also required to make it work with VS Code Remote Container extensions. It tries to run this command (after symlink to podman-compose):
EDIT: #!/usr/bin/sh
if [[ "$1" == "--version" ]]; then
echo "It works!"
elif [[ "$3" == "config" ]]; then
exec /usr/bin/python3 /<path_to_the_fix_for_this_issue_in_the_PR>/podman_compose.py "$@"
else
exec /usr/bin/podman-compose "$@"
fi |
Hi. Is someone working on this issue? If not, I would love to start working on this. Edit: Oh I realized we already have a PR: #138 That would be great if the PR owner also owned the issue for more visibility. Is this issue still valid? |
the latest devel branch 1.0.4 have a config command (since #394) I'm not sure about the released version 1.0.3
|
To debug your
docker-compose.yml
file it's very useful thedocker-compose config
command, which outputs the final configuration that gets used by docker-compose, including all merges, variable expansions, etc.podman-compose is missing that subcommand.
The text was updated successfully, but these errors were encountered: