Skip to content
Michal "Gumernus" Kopčík edited this page Dec 18, 2022 · 6 revisions

Installing

Create your project folder

$ mkdir my-docker-project
$ cd my-docker-project

Download this project

$ git clone https://github.com/gumernus/docker_http_api.git

Create your source folder and source file

$ mkdir src
$ cd src
$ touch index.js

Getting started

Import docker_http_api to your code. (Your project must be ES6)

// index.js

import { Docker } from "../docker_http_api/src/index.js"
const docker = new Docker();

If the code above runs without errors, you can start using the functions.

Clone this wiki locally