diff --git a/npmextra.json b/npmextra.json index 599a958..f9a19b2 100644 --- a/npmextra.json +++ b/npmextra.json @@ -15,9 +15,23 @@ "githost": "gitlab.com", "gitscope": "mojoio", "gitrepo": "docker", - "description": "unofficial docker engine api abstraction package written in TypeScript", + "description": "Provides easy communication with Docker's remote API from Node.js, with TypeScript support.", "npmPackagename": "@mojoio/docker", - "license": "MIT" + "license": "MIT", + "keywords": [ + "Docker", + "API", + "Node.js", + "TypeScript", + "Containers", + "Images", + "Networks", + "Services", + "Secrets" + ] } + }, + "tsdoc": { + "legal": "\n## License and Legal Information\n\nThis repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository. \n\n**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.\n\n### Trademarks\n\nThis project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or if you require further information, please contact us via email at hello@task.vc.\n\nBy using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.\n" } } \ No newline at end of file diff --git a/package.json b/package.json index 83552af..6e8de6b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@apiclient.xyz/docker", "version": "1.0.108", - "description": "easy communication with docker remote api from node, TypeScript ready", + "description": "Provides easy communication with Docker's remote API from Node.js, with TypeScript support.", "private": false, "main": "dist_ts/index.js", "typings": "dist_ts/index.d.ts", @@ -16,11 +16,15 @@ "url": "git+https://gitlab.com/mojoio/docker.git" }, "keywords": [ - "docker", - "sock", - "container", - "request", - "api" + "Docker", + "API", + "Node.js", + "TypeScript", + "Containers", + "Images", + "Networks", + "Services", + "Secrets" ], "author": "Lossless GmbH", "license": "MIT", @@ -64,4 +68,4 @@ "browserslist": [ "last 1 chrome versions" ] -} +} \ No newline at end of file diff --git a/readme.hints.md b/readme.hints.md new file mode 100644 index 0000000..e69de29 diff --git a/readme.md b/readme.md index 5893937..10cdf29 100644 --- a/readme.md +++ b/readme.md @@ -1,49 +1,152 @@ -# @mojoio/docker -unofficial docker engine api abstraction package written in TypeScript +# @apiclient.xyz/docker -## Availabililty and Links -* [npmjs.org (npm package)](https://www.npmjs.com/package/@mojoio/docker) -* [gitlab.com (source)](https://gitlab.com/mojoio/docker) -* [github.com (source mirror)](https://github.com/mojoio/docker) -* [docs (typedoc)](https://mojoio.gitlab.io/docker/) +easy communication with docker remote api from node, TypeScript ready -## Status for master +## Install -Status Category | Status Badge --- | -- -GitLab Pipelines | [![pipeline status](https://gitlab.com/mojoio/docker/badges/master/pipeline.svg)](https://lossless.cloud) -GitLab Pipline Test Coverage | [![coverage report](https://gitlab.com/mojoio/docker/badges/master/coverage.svg)](https://lossless.cloud) -npm | [![npm downloads per month](https://badgen.net/npm/dy/@mojoio/docker)](https://lossless.cloud) -Snyk | [![Known Vulnerabilities](https://badgen.net/snyk/mojoio/docker)](https://lossless.cloud) -TypeScript Support | [![TypeScript](https://badgen.net/badge/TypeScript/>=%203.x/blue?icon=typescript)](https://lossless.cloud) -node Support | [![node](https://img.shields.io/badge/node->=%2010.x.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/) -Code Style | [![Code Style](https://badgen.net/badge/style/prettier/purple)](https://lossless.cloud) -PackagePhobia (total standalone install weight) | [![PackagePhobia](https://badgen.net/packagephobia/install/@mojoio/docker)](https://lossless.cloud) -PackagePhobia (package size on registry) | [![PackagePhobia](https://badgen.net/packagephobia/publish/@mojoio/docker)](https://lossless.cloud) -BundlePhobia (total size when bundled) | [![BundlePhobia](https://badgen.net/bundlephobia/minzip/@mojoio/docker)](https://lossless.cloud) -Platform support | [![Supports Windows 10](https://badgen.net/badge/supports%20Windows%2010/yes/green?icon=windows)](https://lossless.cloud) [![Supports Mac OS X](https://badgen.net/badge/supports%20Mac%20OS%20X/yes/green?icon=apple)](https://lossless.cloud) +To install @apiclient.xyz/docker, you can use npm (npm package manager). Run the following command in your terminal: + +```bash +npm install @apiclient.xyz/docker --save +``` + +This command installs the package and adds it as a dependency to your project's `package.json` file. ## Usage -Use TypeScript for best in class instellisense. +The `@apiclient.xyz/docker` package provides a TypeScript-ready interface for interacting with Docker's Remote API directly from Node.js applications. It leverages TypeScript for strong type definitions, ensuring more reliable and maintainable code. + +### Prerequisites + +Before you begin, ensure: + +- You have Docker installed and running on your machine or a remote server. +- You are familiar with TypeScript and have it set up in your development environment. + +### Getting Started + +First, import the required classes from the package: ```typescript -import { DockerHost } from '@mojoio/docker'; // require Dockersock class - -const run = async () => { - const myDockerHost = new DockerHost(); // optional: you can pass a domain to the contructor, defaults to /var/run/docker.sock - - const containers = await myDockerHost.getContainers(); // promise, resolve with an array of DockerContainers -}; +import { DockerHost, DockerContainer, DockerService, DockerNetwork } from '@apiclient.xyz/docker'; ``` -## Contribution +### Instantiate DockerHost -We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :) +Start by creating a `DockerHost` instance. This class is the entry point to communicate with the Docker Remote API. -For further information read the linked docs at the top of this readme. +```typescript +// Connect to local Docker instance +const localDockerHost = new DockerHost(); -> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh) -| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy) +// Or specify a custom path or URL to a Docker host +const remoteDockerHost = new DockerHost('tcp://:2375'); +``` -[![repo-footer](https://lossless.gitlab.io/publicrelations/repofooter.svg)](https://maintainedby.lossless.com) +### Working with Containers + +#### List All Containers + +```typescript +async function listAllContainers() { + const containers = await localDockerHost.getContainers(); + console.log(containers); +} + +listAllContainers(); +``` + +#### Create and Remove a Container + +```typescript +import { IContainerCreationDescriptor } from '@apiclient.xyz/docker'; + +async function createAndRemoveContainer() { + const containerDescriptor: IContainerCreationDescriptor = { + Hostname: 'test-container', + Domainname: '', + // Additional settings here + }; + + // Create container + const container = await DockerContainer.create(localDockerHost, containerDescriptor); + console.log(`Container Created: ${container.Id}`); + + // Remove container + await container.remove(); + console.log(`Container Removed: ${container.Id}`); +} + +createAndRemoveContainer(); +``` + +### Working with Docker Services + +#### Create a Docker Service + +```typescript +import { IServiceCreationDescriptor } from '@apiclient.xyz/docker'; + +async function createDockerService() { + const serviceDescriptor: IServiceCreationDescriptor = { + name: 'my-service', + image: 'nginx:latest', // Docker Image + // Additional settings + }; + + const service = await DockerService.createService(localDockerHost, serviceDescriptor); + console.log(`Service Created: ${service.Id}`); +} + +createDockerService(); +``` + +### Working with Docker Networks + +#### Listing and Creating Networks + +```typescript +async function listAndCreateNetwork() { + // List all networks + const networks = await localDockerHost.getNetworks(); + console.log(networks); + + // Create a new network + const network = await DockerNetwork.createNetwork(localDockerHost, { + Name: 'my-network' + // Additional settings + }); + console.log(`Network Created: ${network.Id}`); +} + +listAndCreateNetwork(); +``` + +### Advanced Usage + +You can leverage the full potential of the Docker Remote API with `@apiclient.xyz/docker`. This includes managing images, volumes, swarms, and more. The package's design is consistent and intuitive, making it easy to extend your usage as needed. + +Remember, the Docker Remote API offers extensive capabilities. Always refer to the [Docker API documentation](https://docs.docker.com/engine/api/latest/) for a comprehensive list of endpoints and actions you can perform. + +### Conclusion + +`@apiclient.xyz/docker` simplifies interaction with Docker's Remote API in TypeScript projects, providing strong typing and asynchronous operations. Whether you're managing containers, images, services or networks, it offers a comprehensive toolset to perform these tasks seamlessly. + +## License and Legal Information + +This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository. + +**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file. + +### Trademarks + +This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH. + +### Company Information + +Task Venture Capital GmbH +Registered at District court Bremen HRB 35230 HB, Germany + +For any legal inquiries or if you require further information, please contact us via email at hello@task.vc. + +By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works. diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index e59cfd1..a93698c 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@apiclient.xyz/docker', - version: '1.0.108', - description: 'easy communication with docker remote api from node, TypeScript ready' + version: '1.0.109', + description: 'Provides easy communication with Docker's remote API from Node.js, with TypeScript support.' }