Integrate composerize (https://github.com/magicmark/composerize) into it-tools

This commit is contained in:
Carsten Götzinger 2023-03-27 13:01:35 +02:00
parent f512d09227
commit efb78da456
6 changed files with 135 additions and 16 deletions

View file

@ -0,0 +1,11 @@
import { BrandDocker } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Composerize',
path: '/docker-to-docker-compose',
description: 'Turns docker run commands into docker-compose files!',
keywords: ['docker', 'to', 'docker', 'compose'],
component: () => import('./docker-to-docker-compose.vue'),
icon: BrandDocker,
});