func ListContainerProcesses(name: string,opts: []string,) []string
func HistoryImage(name: string,) ImageHistory
func ImportImage(source: string,reference: string,message: string,changes: []string,) string
| { | |
| "default": [ | |
| { | |
| "type": "reject" | |
| } | |
| ], | |
| "transports": { | |
| "docker": { | |
| "docker.io": [ | |
| { |
| #/bin/bash | |
| # Allows user to setup a fresh atomic CLI environment on an atomic | |
| # or cloud system. | |
| # Usage: | |
| # Pull projectatomic/atomic master and install it | |
| # $ sh setup_atomic_cli.sh | |
| # Pull a user's branch | |
| # $ BRANCH=<branch> GIT_USER=<user> sh setup_atomic_cli.sh | |
| from varlink import (Client, VarlinkError) | |
| address = "unix:/run/io.projectatomic.podman" | |
| with Client(address=address) as client: | |
| podman = client.open('io.projectatomic.podman') | |
| foo = podman.GetInfo() |
| # Podman Service Interface | |
| interface io.projectatomic.podman | |
| # Version is the structure returned by GetVersion | |
| type Version ( | |
| version: string, | |
| go_version: string, | |
| git_commit: string, | |
| built: int, |