Skip to content

Commit

Permalink
chore: update migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov committed Dec 17, 2024
1 parent ed02a91 commit 5762f38
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/dashmate/configs/getConfigFileMigrationsFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -1056,6 +1056,14 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)
});
return configFile;
},
'1.8.0': (configFile) => {
Object.entries(configFile.configs)
.forEach(([, options]) => {
options.platform.drive.abci.docker.image = 'dashpay/drive:1-dev';
options.platform.dapi.api.docker.image = 'dashpay/dapi:1-dev';
});
return configFile;
},
};
}

Expand Down

0 comments on commit 5762f38

Please sign in to comment.