Skip to content

Commit

Permalink
chore: update image version to drive:1 and dapi:1
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Nov 29, 2024
1 parent ef86ba4 commit 0a114a5
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 @@ -1040,6 +1040,14 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)
});
return configFile;
},
'1.6.1': (configFile) => {
Object.entries(configFile.configs)
.forEach(([, options]) => {
options.platform.drive.abci.docker.image = 'dashpay/drive:1';
options.platform.dapi.api.docker.image = 'dashpay/dapi:1';
});
return configFile;
},
};
}

Expand Down

0 comments on commit 0a114a5

Please sign in to comment.