mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 21:37:11 -04:00

- Convert Docker Compose files between V1, 2.x, 3.x and CommonSpec - Expand Ports and Volumes syntaxes
12 lines
488 B
TypeScript
12 lines
488 B
TypeScript
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'),
|
|
});
|