Skip to content

Commit

Permalink
fix(compose-cache): Just set the compose cache after the app was
Browse files Browse the repository at this point in the history
initialized with an engine, so that the "docker compose config" could
run and add the lando-compose and docker-compose services
  • Loading branch information
florianPat committed Mar 4, 2025
1 parent e5a82a9 commit 06d3ff5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ module.exports = async (app, lando) => {
app.events.on('ready', 1, async () => await require('./hooks/app-override-tooling-defaults')(app, lando));

// set tooling compose cache
app.events.on('ready', async () => await require('./hooks/app-set-compose-cache')(app, lando));
app.events.on('ready-engine', async () => await require('./hooks/app-set-compose-cache')(app, lando));

// v4 parts of the app are ready
app.events.on('ready', 6, async () => await require('./hooks/app-v4-ready')(app, lando));
Expand Down

0 comments on commit 06d3ff5

Please sign in to comment.