-
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Michal "Gumernus" Kopčík edited this page Dec 18, 2022
·
6 revisions
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
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.