Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/teemow/fokker
https://github.com/teemow/fokker
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/teemow/fokker
- Owner: teemow
- License: bsd-2-clause
- Created: 2013-10-29T10:49:15.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-06T16:00:17.000Z (about 11 years ago)
- Last Synced: 2024-04-23T18:52:14.243Z (8 months ago)
- Language: CoffeeScript
- Size: 105 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fokker
Yet another wrapper around the docker REST API. It has a simple API description that can be changed easily.
## Example
var Fokker = require("fokker");
var docker = new Fokker({host: "127.0.0.1",port: "4243"});
docker.container.list({all:true}, function(err, containers) {
console.log(containers);
});