Skip to main content Link Search Menu Expand Document (external link)

Podman overview

Podman engine

Added in v1.0.0


Table of contents


Layers

PodmanLayer (type alias)

Signature

export type PodmanLayer = Layer.Layer<
  Containers | Execs | Images | Networks | Secrets | Systems | Volumes,
  never,
  never
>

Added in v1.0.0

PodmanLayerWithoutHttpCLientOrWebsocketConstructor (type alias)

Signature

export type PodmanLayerWithoutHttpCLientOrWebsocketConstructor = Layer.Layer<
  Layer.Layer.Success<PodmanLayer>,
  Layer.Layer.Error<PodmanLayer>,
  Layer.Layer.Context<PodmanLayer> | HttpClient.HttpClient | Socket.WebSocketConstructor
>

Added in v1.0.0

layerAgnostic

Signature

export declare const layerAgnostic: (
  connectionOptions: HttpConnectionOptionsTagged | HttpsConnectionOptionsTagged
) => PodmanLayerWithoutHttpCLientOrWebsocketConstructor

Added in v1.0.0

layerBun

Signature

export declare const layerBun: (connectionOptions: MobyConnectionOptions) => PodmanLayer

Added in v1.0.0

layerDeno

Signature

export declare const layerDeno: (connectionOptions: MobyConnectionOptions) => PodmanLayer

Added in v1.0.0

layerNodeJS

Signature

export declare const layerNodeJS: (connectionOptions: MobyConnectionOptions) => PodmanLayer

Added in v1.0.0

layerUndici

Signature

export declare const layerUndici: (connectionOptions: MobyConnectionOptions) => PodmanLayer

Added in v1.0.0

layerWeb

Signature

export declare const layerWeb: (
  connectionOptions: HttpConnectionOptionsTagged | HttpsConnectionOptionsTagged
) => PodmanLayer

Added in v1.0.0

layerWithoutHttpCLient

Signature

export declare const layerWithoutHttpCLient: PodmanLayerWithoutHttpCLientOrWebsocketConstructor

Added in v1.0.0