Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cli-to-docker-compose

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cli-to-docker-compose

Conver docker cli to docker-compose.yml format

  • 0.4.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

Important!

Implemented some docker options only.

cli-to-docker-compose Build Status Code Coverage NPM version Dependency Status

Conver docker cli to docker-compose.yml format

Installation

Install using npm:

npm install -g cli-to-docker-compose

Usage

for example:

cli-to-docker-compose docker run -d --cap-add SYS_PTRACE --name netdata -v /proc:/host/proc:ro -v /sys:/host/sys:ro -p 19999:19999 titpetric/netda

output:

netdata:
  image: titpetric/netda
  cap_add:
    - SYS_PTRACE
  volumes:
    - '/proc:/host/proc:ro'
    - '/sys:/host/sys:ro'
  ports:
    - '19999:19999'

Contributing

Please submit all issues and pull requests to the Ti-webdev/cli-to-docker-compose repository!

Tasks

List available tasks using gulp help.

Tests

Run tests using npm test or gulp test.

Support

If you have any problem or suggestion please open an issue here.

FAQs

Package last updated on 09 Dec 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc