New Beta Test: Docker Compose Plugin #638
Replies: 3 comments 3 replies
-
Really in favor of this change, but I do have one comment. To allow for BC, I'd like to see a DOCKER_COMPOSE command variable to be used instead of hardcoded |
Beta Was this translation helpful? Give feedback.
-
Would it be possible to release this soonish, @navarr? Is there anything preventing this from happening? Thanks! |
Beta Was this translation helpful? Give feedback.
-
Released as v0.14.0 |
Beta Was this translation helpful? Give feedback.
-
Happy Friday, everyone!
Today, I've merged #631 into the
main
branch for beta testing. This PR moves Warden from using the deprecateddocker-compose
standalone to thedocker compose
built-in plugin.It is expected to resolve issues with pulling the MariaDB image and cause no major new issues. That said, there is a small BC break to be aware of.
Compatibility Issue
Moving to
docker compose
over the standalone means that image names will update, and any stored configuration for connecting to databases from the host machine will need updating. This change will cause a db container for a project named vanilla to change fromvanilla_db_1
tovanilla-db-1
. Please keep this in mind if you cannot connect to an image after the update. In all cases, connecting from one image to another in the network should still be possible through the use of the shortname (e.g.db
).How to Test
To use the current in-development version of Warden you can either checkout the
main
branch if you installed via git, or you can runbrew install wardenenv/warden/warden --HEAD
to have brew upgrade to the in-development version.How to Report
Please report issues as normal through the Warden New Issue Wizard. Please specify that you are using the
main
branch.Beta Was this translation helpful? Give feedback.
All reactions