fdiblen / doqueu

Docker manager written in GO

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

doqueu - Docker container management API

Generate API docs

go get -u github.com/fdiblen/doqueu
swag init

Run the server

go run main.go

API documentation can be fount at http://localhost:8080/swagger/index.html

Examples

List containers

curl -X 'GET' \
  'http://localhost:8080/api/v1/containers' \
  -H 'accept: application/json'

Run a container

curl -X 'POST' \
  'http://localhost:8080/api/v1/containers/run' \
  -H 'accept: application/json' \
  -H 'Content-Type: multipart/form-data' \
  -F 'imagename=ubuntu:latest' \
  -F 'command=echo "Hello World"'

Stop a running container

curl -X 'POST' \
  'http://localhost:8080/api/v1/containers/stop' \
  -H 'accept: application/json' \
  -H 'Content-Type: multipart/form-data' \
  -F 'id=15b16c8bae4eea58f77fbf9558cb487502565e7a4bb4d170c0fc93884e532c7c'

About

Docker manager written in GO

License:Apache License 2.0


Languages

Language:Go 100.0%