npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

composeverter

v1.7.2

Published

Docker Compose file utilities (converters and other utilities)

Downloads

359

Readme

composeverter - Docker Compose Format Converter

npm npm GitHub license

This NPM package provides a simple and convenient way to convert Docker Compose files from one version to another. Docker Compose files allow you to define and run multi-container Docker applications, but the format has evolved over time. With this package, you can easily migrate your Compose files between different versions. It also provides some functions to check YAML and test if a given Docker volume mapping is a named one. It also provides a function to validate a Docker Compose file against Docker Compose Common Specification.

Installation

You can install this package via NPM:

npm install composeverter

Usage - Conversion

This package provides four main conversion functions, which you can use to convert Docker Compose files from one format to another. Each function takes the Docker Compose file content as input and returns the content in the target format.

Configuration

Each of the following functions can take an additional configuration object, with the following properties:

1. expandVolumes (optional)

  • Type: boolean
  • Default: false

Set this parameter to true if you want to enable expansion of short volume syntax to long volume syntax.

2. expandPorts (optional)

  • Type: boolean
  • Default: false

Set this parameter to true if you want to enable expansion of short ports mapping syntax to long ports mapping syntax.

migrateFromV1ToV2x(composeContent: string, configuration: Configuration = null): string

Converts a Docker Compose file from V1 to version 2.x.

const converter = require('composeverter');

const v1ComposeContent = `
web:
  image: nginx:latest
`;
const v2ComposeContent = converter.migrateFromV1ToV2x(v1ComposeContent);
console.log(v2ComposeContent);

migrateFromV2xToV3x(composeContent: string, configuration: Configuration = null): string

Converts a Docker Compose file from version 2.x to version 3.x.

const converter = require('composeverter');

const v2ComposeContent = `
version: '2'
services:
  web:
    image: nginx:latest
`;
const v3ComposeContent = converter.migrateFromV2xToV3x(v2ComposeContent);
console.log(v3ComposeContent);

migrateFromV3xToV2x(composeContent: string, configuration: Configuration = null): string

Converts a Docker Compose file from version 3.x to version 2.x.

const converter = require('composeverter');

const v3ComposeContent = `
version: '3'
services:
  web:
    image: nginx:latest
`;
const v2ComposeContent = converter.migrateFromV3xToV2x(v3ComposeContent);
console.log(v2ComposeContent);

migrateToCommonSpec(composeContent: string, configuration: Configuration = null): string

Automatically migrates a Docker Compose file to the latest version available : Common Specification.

const converter = require('composeverter');

const composeContent = `
web:
  image: nginx:latest
`;
const latestComposeContent = converter.migrateToCommonSpec(composeContent);
console.log(latestComposeContent);

With configuration:

const converter = require('composeverter');

const composeContent = `
web:
  image: nginx:latest
`;
const latestComposeContent = converter.migrateToCommonSpec(composeContent, {expandPorts: true, expandVolumes: true});
console.log(latestComposeContent);

Usage - others functions

getVolumeNameFromVolumeSpec(volumeSpec: string): string

Get the volume name from a Docker Compose volume mapping.

Parameters:

  • volumeSpec: A string representing the Docker Compose volume mapping (e.g., "/data2:/app/data2:ro").

Returns: The extracted volume name as a string.

isNamedVolume(source: string): boolean

Tell if the given source is a named Docker volume.

Parameters:

  • source: A string representing the source of the Docker volume (e.g., "data").

Returns: A boolean indicating whether the source is a named Docker volume.

yamlCheck(yaml: string): any

Check YAML validity and return the parsed object if YAML is valid.

Parameters:

  • yaml: A string representing the YAML content to be checked.

**Throws: **

Throws YamlSyntaxError if parsing errors occurred. This class has the following members :

  • message: concatenated error messages
  • lines: line numbers that have errors
  • details: array of messages with the following structure:
{
  line: number, 
  message: string, 
  pos: {
    start: { line: number, col: number }, 
    end: { line: number, col: number }
  }
}

Returns: The parsed object if the YAML is valid.

validateDockerComposeToCommonSpec(content: string): any

Check Docker Compose validity against Docker Compose Common Specification and returns validation errors.

Parameters:

  • content: A string representing the Docker Compose content to be checked.

Returns:

  • array of errors (helpLink is a potential link to Docker Compose documentation):
{
  line: number,
  message: string,
  helpLink: string
}

getDockerComposeSchemaWithoutFormats(): any

Returns the Docker Compose Common Specification schema (with formats replaced with patterns)

License

This package is distributed under the MIT License. See the LICENSE file for details.

Contributing

  • Clone a fork of the repo and install the project dependencies by running npm install
  • Make your changes, and build the project by running npm run estlin && npm run build
  • Test your changes with npm run test

Issues

If you encounter any problems or have suggestions, please open an issue on our GitHub repository.

Credits

This package was created and is maintained by ShareVB.