mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 13:57:10 -04:00
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:
parent
22e836bb3d
commit
1b17302bf6
7 changed files with 246 additions and 37 deletions
12
src/tools/docker-compose-converter/index.ts
Normal file
12
src/tools/docker-compose-converter/index.ts
Normal 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'),
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue