mirror of https://github.com/containers/podman.git
Merge pull request #4914 from baude/apidevel
[CI:DOCS] Add logo and dev statement
This commit is contained in:
commit
fb2bd26f73
|
@ -5,6 +5,8 @@ outdir := $(CURDIR)
|
||||||
topdir := $(CURDIR)/rpmbuild
|
topdir := $(CURDIR)/rpmbuild
|
||||||
SHORT_COMMIT ?= $(shell git rev-parse --short=8 HEAD)
|
SHORT_COMMIT ?= $(shell git rev-parse --short=8 HEAD)
|
||||||
|
|
||||||
|
export GO111MODULE=off
|
||||||
|
|
||||||
srpm:
|
srpm:
|
||||||
mkdir -p $(topdir)
|
mkdir -p $(topdir)
|
||||||
sh $(current_dir)/prepare.sh
|
sh $(current_dir)/prepare.sh
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
Reference
|
Reference
|
||||||
=========
|
=========
|
||||||
|
|
||||||
Check out our new `API documentation <_static/api.html>`_
|
Check out our new in-development `API documentation <_static/api.html>`_
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
export GO111MODULE=off
|
||||||
|
|
||||||
SWAGGER_OUT ?= swagger.yaml
|
SWAGGER_OUT ?= swagger.yaml
|
||||||
|
|
||||||
swagger:
|
swagger:
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
// Package serviceapi Provides a Container compatible interface.
|
// Package serviceapi Provides a Container compatible interface (EXPERIMENTAL)
|
||||||
//
|
//
|
||||||
// This documentation describes the HTTP LibPod interface
|
// This documentation describes the HTTP LibPod interface. It is to be consider
|
||||||
|
// only as experimental as this point. The endpoints, parameters, inputs, and
|
||||||
|
// return values can all change.
|
||||||
//
|
//
|
||||||
// Schemes: http, https
|
// Schemes: http, https
|
||||||
// Host: podman.io
|
// Host: podman.io
|
||||||
|
@ -8,6 +10,10 @@
|
||||||
// Version: 0.0.1
|
// Version: 0.0.1
|
||||||
// License: Apache-2.0 https://opensource.org/licenses/Apache-2.0
|
// License: Apache-2.0 https://opensource.org/licenses/Apache-2.0
|
||||||
// Contact: Podman <podman@lists.podman.io> https://podman.io/community/
|
// Contact: Podman <podman@lists.podman.io> https://podman.io/community/
|
||||||
|
// InfoExtensions:
|
||||||
|
// x-logo:
|
||||||
|
// - url: https://raw.githubusercontent.com/containers/libpod/master/logo/podman-logo.png
|
||||||
|
// - altText: "Podman logo"
|
||||||
//
|
//
|
||||||
// Consumes:
|
// Consumes:
|
||||||
// - application/json
|
// - application/json
|
||||||
|
|
Loading…
Reference in New Issue