Migrating from docker compose v1 to v2 #300
Closed
maximmax42
started this conversation in
General
Replies: 2 comments
-
Not that I have seen, I'm using v2 compose and it works fine |
Beta Was this translation helpful? Give feedback.
0 replies
-
Docs and main repo (here) has been updated. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Basically, compose v1 (
docker-compose
with the dash; a separate command) is gonna be deprecated by the end of June this year, so it's a good idea to migrate whole project to use compose v2 (docker compose
with the space; a plugin for docker).From my experience running zipline, there's nothing additional that needs to be configured, so you can just literally find and replace all instances of
docker-compose
withdocker compose
within the repo and the docs (except for docker-compose(.dev).yml files of course), but I can't say for sure it won't break something.Beta Was this translation helpful? Give feedback.
All reactions