feat(new tool): Docker Compose Converter

- Convert Docker Compose files between V1, 2.x, 3.x and CommonSpec
- Expand Ports and Volumes syntaxes
This commit is contained in:
sharevb 2024-01-21 15:23:22 +01:00 committed by ShareVB
parent 22e836bb3d
commit 1b17302bf6
7 changed files with 246 additions and 37 deletions

View file

@ -0,0 +1,12 @@
import { BrandDocker } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Docker Compose Format Converter',
path: '/docker-compose-converter',
description: 'Convert Docker Compose file between V1, 2.x, 3.x or CommonSpec and may expand ports/volumes syntaxes',
keywords: ['docker', 'compose', 'converter'],
component: () => import('./docker-compose-converter.vue'),
icon: BrandDocker,
createdAt: new Date('2024-01-04'),
});