-
Notifications
You must be signed in to change notification settings - Fork 5.4k
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
Allow some commands to run without full config validation #1973
Comments
+1 |
👍 |
+1 |
+1 |
1 similar comment
+1 |
+1 Any progress on this? |
+1 |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
This issue has been automatically closed because it had not recent activity during the stale period. |
Still need this, I believe. I just ran into
Resorting to docker down commands as a workaround. |
yup having the same issue |
I believe this issue is still valid and should be re-opened. I just ran into this problem due to the dual nature of
|
this issue is still valid,
the expected behavior is to pull without the required env_file, which is required only for running the service itself.. |
This has come up a couple times in the last week (most recently in #1972).
Commands like
stop
,kill
,ps
,logs
,port
,restart
,rm
,start
only need to know the list of service names, not any part of the service definition.Commands like
build
,pull
only need to care about one or two fields from the service definition (build
anddockerfile
forbuild
,image
for pull).If we could split our config validation into two phases (a top level service name validation, and a full validation) we could support that first group of commands.
The second group would be more work, and require a three phase validation.
The text was updated successfully, but these errors were encountered: