monegim / orchestrator-in-go

Build an Orchestrator in Go(From Scratch)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

orchestrator-in-go

Build an Orchestrator in Go(From Scratch)

Docker API

List containers

curl --unix-socket /var/run/docker.sock http://localhost/v1.43/containers/json

Stop a container

curl --unix-socket /var/run/docker.sock http://localhost/v1.43/containers/b169f7a8780b/stop -XPOST

rm a container

curl --unix-socket /var/run/docker.sock http://localhost/v1.43/containers/b169f7a8780b -XDELETE

About

Build an Orchestrator in Go(From Scratch)


Languages

Language:Go 99.3%Language:Dockerfile 0.7%