feat(services): Add Docker port mapping sync and reconfigure workflow for local services

This commit is contained in:
2025-08-16 08:47:39 +00:00
parent ff57f8a322
commit dbc1a1ba18
6 changed files with 368 additions and 10 deletions

View File

@@ -48,6 +48,10 @@ export const run = async (argvArg: any) => {
await handleClean(serviceManager);
break;
case 'reconfigure':
await serviceManager.reconfigure();
break;
case 'help':
default:
showHelp();
@@ -195,6 +199,7 @@ function showHelp() {
logger.log('info', ' config Show current configuration');
logger.log('info', ' compass Show MongoDB Compass connection string');
logger.log('info', ' logs [service] Show logs (mongo|s3|all) [lines]');
logger.log('info', ' reconfigure Reassign ports and restart services');
logger.log('info', ' remove Remove all containers');
logger.log('info', ' clean Remove all containers and data ⚠️');
logger.log('info', ' help Show this help message');