feat(new-tool): add a docker run to docker compose converter (#291)

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

* Fix Prettier errors

* Fix Prettier errors

* Fix code according to suggestions

* Added syntax highlighting to TextareaCopyable component, some ui adjustments in docker-run-to-docker-compose-converter.vue
This commit is contained in:
cgoIT 2023-03-27 17:31:13 +02:00 committed by GitHub
parent f512d09227
commit ffb99579ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 121 additions and 16 deletions

View file

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