changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/pod/obj/container.lisp

changeset 165: fbab9b24fbe6
author: ellis <ellis@rwest.io>
date: Thu, 04 Jan 2024 23:07:59 -0500
permissions: -rw-r--r--
description: pod types
1 (in-package :pod)
2 
3 (defclass live-container (id)
4  (app-armor-profile args bounding-caps config common-pid-file created
5  dependencies driver effective-caps exec-ids exit-command graph-driver
6  host-config hostname-path hosts-path image image-name is-infra mount-label
7  mounts name namespace network-settings oci-config-path oci-runtime path pod
8  process-label resolv-conf-path restart-count rootfs size-root-fs size-rw state static-dir)
9  (:documentation "A container in the Podman runtime environment."))
10 
11 (defclass build-container (id)
12  (builder imageid imagename containername)
13  (:documentation "A container in the Buildah OCI environment."))