Skip to content

Commit 06d3ff5

Browse files
committed
fix(compose-cache): Just set the compose cache after the app was
initialized with an engine, so that the "docker compose config" could run and add the lando-compose and docker-compose services
1 parent e5a82a9 commit 06d3ff5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ module.exports = async (app, lando) => {
131131
app.events.on('ready', 1, async () => await require('./hooks/app-override-tooling-defaults')(app, lando));
132132

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

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

0 commit comments

Comments
 (0)