Docker Log

in kr •  7 years ago 

Docker 에는 API가 있어서 다양한 작업들을 할 수가 있다.

원래 쓰려던 글은 굉장히 많은 삽질에 관한 내용이었는데, 아주 단순하게 가능한 방법을 찾아서.. 공유

const http = require('http');

const options = {
    socketPath: '/var/run/docker.sock',
    path: '/images/json',
};

const callback = res => {
    console.log(`STATUS: ${res.statusCode}`);
    res.setEncoding('utf8');
    res.on('data', data =>{
        console.log("DATA:", JSON.parse( "["+data+"]") )
    });
    res.on('error', data => console.error(data));
};

const clientRequest = http.request(options, callback);
clientRequest.end();

방법은 엄청 허무할정도.
내가 이걸 1달을 고생했다니.

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  

좋은 글 잘 읽고 갑니다. 팔로우할께요. ^^