Safe Haskell | None |
---|---|
Language | Haskell2010 |
Docker.Client.Types
- data Endpoint
- = VersionEndpoint
- | ListContainersEndpoint ListOpts
- | ListImagesEndpoint ListOpts
- | CreateContainerEndpoint CreateOpts (Maybe ContainerName)
- | StartContainerEndpoint StartOpts ContainerID
- | StopContainerEndpoint Timeout ContainerID
- | KillContainerEndpoint Signal ContainerID
- | RestartContainerEndpoint Timeout ContainerID
- | PauseContainerEndpoint ContainerID
- | UnpauseContainerEndpoint ContainerID
- | ContainerLogsEndpoint LogOpts Bool ContainerID
- | DeleteContainerEndpoint DeleteOpts ContainerID
- | InspectContainerEndpoint ContainerID
- type URL = Text
- type ApiVersion = Text
- data ContainerID
- fromContainerID :: ContainerID -> Text
- toContainerID :: Text -> Maybe ContainerID
- data ImageID
- fromImageID :: ImageID -> Text
- toImageID :: Text -> Maybe ImageID
- data Timeout
- data Signal
- data ContainerDetails = ContainerDetails {
- appArmorProfile :: Text
- args :: [Text]
- containerDetailsConfig :: ContainerConfig
- created :: UTCTime
- driver :: Text
- containerDetailsHostConfig :: HostConfig
- hostnamePath :: FilePath
- hostsPath :: FilePath
- logPath :: FilePath
- containerDetailsId :: ContainerID
- containerDetailsImage :: ImageID
- mountLabel :: Text
- name :: Text
- networkSettings :: NetworkSettings
- path :: FilePath
- processLabel :: Text
- resolveConfPath :: FilePath
- restartCount :: Int
- state :: ContainerState
- mounts :: [Mount]
- data DockerClientOpts = DockerClientOpts {
- apiVer :: ApiVersion
- baseUrl :: URL
- defaultClientOpts :: DockerClientOpts
- data ListOpts = ListOpts {}
- defaultListOpts :: ListOpts
- data DockerVersion = DockerVersion {
- version :: Text
- apiVersion :: ApiVersion
- gitCommit :: Text
- goVersion :: Text
- os :: Text
- arch :: Text
- kernelVersion :: Text
- buildTime :: Text
- data ContainerPortInfo = ContainerPortInfo {
- ipAddressInfo :: Maybe Text
- privatePortInfo :: Port
- publicPortInfo :: Maybe Port
- portTypeInfo :: Maybe PortType
- data Container = Container {
- containerId :: ContainerID
- containerNames :: [Text]
- containerImageName :: Text
- containerImageId :: ImageID
- containerCommand :: Text
- containerCreatedAt :: Int
- containerStatus :: Status
- containerPorts :: [ContainerPortInfo]
- containerLabels :: [Label]
- containerNetworks :: [Network]
- containerMounts :: [Mount]
- data ContainerState = ContainerState {}
- data Status
- type Digest = Text
- data Label = Label Name Value
- type Tag = Text
- data Image = DockerImage {
- imageId :: ImageID
- imageCreated :: Integer
- imageParentId :: Maybe ImageID
- imageRepoTags :: [Tag]
- imageRepoDigests :: [Digest]
- imageSize :: Integer
- imageVirtualSize :: Integer
- imageLabels :: [Label]
- dropImagePrefix :: [a] -> [a]
- data CreateOpts = CreateOpts {}
- defaultCreateOpts :: Text -> CreateOpts
- data DetachKeys
- data StartOpts = StartOpts {}
- defaultStartOpts :: StartOpts
- data DeleteOpts = DeleteOpts {
- deleteVolumes :: Bool
- force :: Bool
- defaultDeleteOpts :: DeleteOpts
- type Timestamp = Integer
- data TailLogOpt
- data LogOpts = LogOpts {}
- defaultLogOpts :: LogOpts
- data VolumePermission
- data Bind = Bind {
- hostSrc :: Text
- containerDest :: Text
- volumePermission :: Maybe VolumePermission
- newtype Volume = Volume FilePath
- data Device = Device {
- pathOnHost :: FilePath
- pathInContainer :: FilePath
- cgroupPermissions :: Text
- type ContainerName = Text
- data VolumeFrom = VolumeFrom ContainerName (Maybe VolumePermission)
- data Link = Link Text (Maybe Text)
- data LogDriverType
- data LogDriverOption = LogDriverOption Name Value
- data LogDriverConfig = LogDriverConfig LogDriverType [LogDriverOption]
- data NetworkMode
- data PortType
- data Network = Network NetworkMode NetworkOptions
- data NetworkSettings = NetworkSettings {
- networkSettingsBridge :: Text
- networkSettingsSandboxId :: Text
- networkSettingsHairpinMode :: Bool
- networkSettingsLinkLocalIPv6Address :: Text
- networkSettingsLinkLocalIPv6PrefixLen :: Int
- networkSettingsPorts :: [PortBinding]
- networkSettingsSandboxKey :: Text
- networkSettingsSecondaryIPAddresses :: Maybe [Text]
- networkSettingsSecondaryIPv6Addresses :: Maybe [Text]
- networkSettingsEndpointID :: Text
- networkSettingsGateway :: Text
- networkSettingsGlobalIPv6Address :: Text
- networkSettingsGlobalIPv6PrefixLen :: Int
- networkSettingsIpAddress :: Text
- networkSettingsIpPrefixLen :: Int
- networkSettingsIpv6Gateway :: Text
- networkSettingsMacAddress :: Text
- networkSettingsNetworks :: [Network]
- data NetworkOptions = NetworkOptions {
- networkOptionsId :: Text
- networkOptionsEndpointId :: Text
- networkOptionsGateway :: Text
- networkOptionsIpAddress :: Text
- networkOptionsIpPrefixLen :: Int
- networkOptionsIpV6Gateway :: Maybe Text
- networkOptionsGlobalIPv6Address :: Maybe Text
- networkOptionsGlobalIPv6PrefixLen :: Maybe Int
- networkOptionsMacAddress :: Text
- data Mount = Mount {
- mountName :: Text
- mountSource :: FilePath
- mountDestination :: FilePath
- mountDriver :: Text
- mountMode :: Maybe VolumePermission
- mountRW :: Bool
- mountPropogation :: Text
- data PortBinding = PortBinding {}
- data HostPort = HostPort {}
- type RetryCount = Integer
- data RestartPolicy
- data Isolation
- newtype UTSMode = UTSMode Text
- data HostConfig = HostConfig {
- binds :: [Bind]
- containerIDFile :: Maybe FilePath
- logConfig :: LogDriverConfig
- networkMode :: NetworkMode
- portBindings :: [PortBinding]
- restartPolicy :: RestartPolicy
- volumeDriver :: Maybe Text
- volumesFrom :: [VolumeFrom]
- capAdd :: [Text]
- capDrop :: [Text]
- dns :: [Text]
- dnsOptions :: [Text]
- dnsSearch :: [Text]
- extraHosts :: [Text]
- ipcMode :: Maybe Text
- links :: [Link]
- oomScoreAdj :: Maybe Integer
- privileged :: Bool
- publishAllPorts :: Bool
- readonlyRootfs :: Bool
- securityOpt :: [Text]
- shmSize :: Maybe Integer
- resources :: ContainerResources
- defaultHostConfig :: HostConfig
- data Ulimit = Ulimit {
- ulimitName :: Text
- ulimitSoft :: Integer
- ulimitHard :: Integer
- data ContainerResources = ContainerResources {
- cpuShares :: Maybe Integer
- blkioWeight :: Maybe Integer
- blkioWeightDevice :: Maybe [DeviceWeight]
- blkioDeviceReadBps :: Maybe [DeviceRate]
- blkioDeviceWriteBps :: Maybe [DeviceRate]
- blkioDeviceReadIOps :: Maybe [DeviceRate]
- blkioDeviceWriteIOps :: Maybe [DeviceRate]
- cpuPeriod :: Maybe Integer
- cpusetCpus :: Maybe Text
- cpusetMems :: Maybe Text
- devices :: [Device]
- kernelMemory :: Maybe MemoryConstraint
- memory :: Maybe MemoryConstraint
- memoryReservation :: Maybe MemoryConstraint
- memorySwap :: Maybe MemoryConstraint
- oomKillDisable :: Bool
- ulimits :: [Ulimit]
- defaultContainerResources :: ContainerResources
- type Port = Integer
- type Name = Text
- type Value = Text
- data EnvVar = EnvVar Name Value
- data ContainerConfig = ContainerConfig {
- hostname :: Maybe Text
- domainname :: Maybe Text
- user :: Maybe Text
- attachStdin :: Bool
- attachStdout :: Bool
- attachStderr :: Bool
- exposedPorts :: [ExposedPort]
- tty :: Bool
- openStdin :: Bool
- stdinOnce :: Bool
- env :: [EnvVar]
- cmd :: [Text]
- image :: Text
- volumes :: [Volume]
- workingDir :: Maybe FilePath
- entrypoint :: Maybe Text
- networkDisabled :: Maybe Bool
- macAddress :: Maybe Text
- labels :: [Label]
- stopSignal :: Signal
- defaultContainerConfig :: Text -> ContainerConfig
- data ExposedPort = ExposedPort Port PortType
- data DeviceWeight = DeviceWeight {
- deviceWeightPath :: FilePath
- deviceWeightWeight :: Text
- data DeviceRate = DeviceRate {
- deviceRatePath :: FilePath
- deviceRateRate :: Text
- addPortBinding :: PortBinding -> CreateOpts -> CreateOpts
- addExposedPort :: ExposedPort -> CreateOpts -> CreateOpts
- addBind :: Bind -> CreateOpts -> CreateOpts
- setCmd :: Text -> CreateOpts -> CreateOpts
- addLink :: Link -> CreateOpts -> CreateOpts
- addVolume :: Volume -> CreateOpts -> CreateOpts
- addVolumeFrom :: VolumeFrom -> CreateOpts -> CreateOpts
Documentation
List of Docker Engine API endpoints
Constructors
VersionEndpoint | |
ListContainersEndpoint ListOpts | |
ListImagesEndpoint ListOpts | |
CreateContainerEndpoint CreateOpts (Maybe ContainerName) | |
StartContainerEndpoint StartOpts ContainerID | |
StopContainerEndpoint Timeout ContainerID | |
KillContainerEndpoint Signal ContainerID | |
RestartContainerEndpoint Timeout ContainerID | |
PauseContainerEndpoint ContainerID | |
UnpauseContainerEndpoint ContainerID | |
ContainerLogsEndpoint LogOpts Bool ContainerID | Second argument (Bool) is whether to follow which is currently hardcoded to False.
See note in |
DeleteContainerEndpoint DeleteOpts ContainerID | |
InspectContainerEndpoint ContainerID |
type ApiVersion = Text Source #
We should newtype this
data ContainerID Source #
ID of a contianer
Instances
Eq ContainerID Source # | |
Show ContainerID Source # | |
ToJSON ContainerID Source # | |
FromJSON ContainerID Source # | |
fromContainerID :: ContainerID -> Text Source #
Used for extracting the id of the container from the newtype
toContainerID :: Text -> Maybe ContainerID Source #
Used for parsing a Text value into a ContainerID. We apply some basic validation here.
fromImageID :: ImageID -> Text Source #
Used for extracting the id of the image from the newtype.
toImageID :: Text -> Maybe ImageID Source #
Helper function used for parsing a Text value into an ImageID. For now just basic validation is used.
Timeout used for stopping a container. DefaultTimeout is 10 seconds.
Constructors
Timeout Integer | |
DefaultTimeout |
Signal used for sending to the process running in the container. The default signal is SIGTERM.
data ContainerDetails Source #
Constructors
ContainerDetails | |
Fields
|
Instances
data DockerClientOpts Source #
Client options used to configure the remote engine we're talking to
Constructors
DockerClientOpts | |
Fields
|
Instances
Eq DockerClientOpts Source # | |
Show DockerClientOpts Source # | |
Monad m => MonadReader (DockerClientOpts, HttpHandler m) (DockerT m) | |
defaultClientOpts :: DockerClientOpts Source #
Default DockerClientOpts used for talking to the docker engine.
List options used for filtering the list of container or images.
defaultListOpts :: ListOpts Source #
Default ListOpts. Doesn't list stopped containers.
data DockerVersion Source #
Data type used for represneting the version of the docker engine remote API.
Constructors
DockerVersion | |
Fields
|
Instances
Eq DockerVersion Source # | |
Show DockerVersion Source # | |
Generic DockerVersion Source # | |
ToJSON DockerVersion Source # | |
FromJSON DockerVersion Source # | |
type Rep DockerVersion Source # | |
data ContainerPortInfo Source #
Data type used for representing the information of various ports that a contianer may expose.
Constructors
ContainerPortInfo | |
Fields
|
Instances
Data type used for parsing a list of containers.
Constructors
Container | |
Fields
|
data ContainerState Source #
Data type used for parsing the container state from a list of containers.
Constructors
ContainerState | |
Instances
Eq ContainerState Source # | |
Show ContainerState Source # | |
Generic ContainerState Source # | |
FromJSON ContainerState Source # | |
type Rep ContainerState Source # | |
Represents the status of the container life cycle.
Alias for representing a RepoDigest. We could newtype this and add some validation.
Container and Image Labels.
Data type used for parsing information from a list of images.
Constructors
DockerImage | |
Fields
|
dropImagePrefix :: [a] -> [a] Source #
Helper function used for dropping the "image" prefix when serializing the Image data type to and from json.
data CreateOpts Source #
Options used for creating a Container.
Constructors
CreateOpts | |
Fields |
Instances
Eq CreateOpts Source # | |
Show CreateOpts Source # | |
ToJSON CreateOpts Source # | |
defaultCreateOpts :: Text -> CreateOpts Source #
Default create options when creating a container. You only need to specify an image name and the rest is all sensible defaults.
data DetachKeys Source #
Override the key sequence for detaching a container. Format is a single character [a-Z] or ctrl-value where value is one of: a-z, @, ^, [, , or _.
Constructors
WithCtrl Char | |
WithoutCtrl Char | |
DefaultDetachKey |
Instances
Options for starting a container.
Constructors
StartOpts | |
Fields |
defaultStartOpts :: StartOpts Source #
Default options for staring a container.
data DeleteOpts Source #
Options for deleting a container.
Constructors
DeleteOpts | |
Fields
|
Instances
defaultDeleteOpts :: DeleteOpts Source #
Default options for deleting a container. Most of the time we DON'T want to delete the container's volumes or force delete it if it's running.
data TailLogOpt Source #
Used for requesting N number of lines when tailing a containers log output.
Instances
Log options used when requesting the log output from a container.
Constructors
LogOpts | |
defaultLogOpts :: LogOpts Source #
Sensible default for log options.
data VolumePermission Source #
Set permissions on volumes that you mount in the container.
Instances
Eq VolumePermission Source # | |
Show VolumePermission Source # | |
Generic VolumePermission Source # | |
ToJSON VolumePermission Source # | |
FromJSON VolumePermission Source # | |
type Rep VolumePermission Source # | |
Constructors
Bind | |
Fields
|
Used for marking a directory in the container as "exposed" hence
taking it outside of the COW filesystem and making it mountable
in other containers using VolumesFrom. The volume usually get's
created somewhere in varlibdockervolumes
(depending on the volume
driver used).
The CLI example is:
docker run --name app -v /opt/data -it myapp:latest docker run --name app2 --volumes-from app /bin/bash -c "ls -l /opt/data"
Constructors
Device | |
Fields
|
type ContainerName = Text Source #
data VolumeFrom Source #
Constructors
VolumeFrom ContainerName (Maybe VolumePermission) |
Instances
Eq VolumeFrom Source # | |
Show VolumeFrom Source # | |
ToJSON VolumeFrom Source # | |
FromJSON VolumeFrom Source # | |
data LogDriverType Source #
Instances
Eq LogDriverType Source # | |
Show LogDriverType Source # | |
ToJSON LogDriverType Source # | |
FromJSON LogDriverType Source # | |
data LogDriverOption Source #
Constructors
LogDriverOption Name Value |
Instances
Eq LogDriverOption Source # | |
Show LogDriverOption Source # | |
ToJSON [LogDriverOption] Source # | |
FromJSON [LogDriverOption] Source # | |
data LogDriverConfig Source #
Constructors
LogDriverConfig LogDriverType [LogDriverOption] |
Instances
Eq LogDriverConfig Source # | |
Show LogDriverConfig Source # | |
ToJSON LogDriverConfig Source # | |
FromJSON LogDriverConfig Source # | |
data NetworkMode Source #
Constructors
Bridge | |
Host | |
NetworkDisabled |
Instances
Eq NetworkMode Source # | |
Ord NetworkMode Source # | |
Show NetworkMode Source # | |
ToJSON NetworkMode Source # | |
FromJSON NetworkMode Source # | |
Constructors
Network NetworkMode NetworkOptions |
data NetworkSettings Source #
Data type reprsenting the various network settings a container can have.
Constructors
NetworkSettings | |
Fields
|
Instances
Eq NetworkSettings Source # | |
Show NetworkSettings Source # | |
FromJSON NetworkSettings Source # | |
data NetworkOptions Source #
Data type used for parsing the network information of each container when listing them.
Constructors
NetworkOptions | |
Fields
|
Instances
Eq NetworkOptions Source # | |
Show NetworkOptions Source # | |
FromJSON NetworkOptions Source # | |
Data type used for parsing the mount information from a container list.
Constructors
Mount | |
Fields
|
data PortBinding Source #
This datastructure models mapping a Port from the container onto the host system s that the service running in the container can be accessed from the outside world. We either map a port onto all interfaces (default) or onto a specific interface like `127.0.0.1`. NOTE: We should disallow duplicate port bindings as the ToJSON instance will only send the last one. { port/protocol: [{ HostPort: "port" }] }
Constructors
PortBinding | |
Instances
Eq PortBinding Source # | |
Show PortBinding Source # | |
ToJSON [PortBinding] Source # | |
FromJSON [PortBinding] Source # | |
type RetryCount = Integer Source #
data RestartPolicy Source #
Instances
Eq RestartPolicy Source # | |
Show RestartPolicy Source # | |
ToJSON RestartPolicy Source # | |
FromJSON RestartPolicy Source # | |
Constructors
UTSMode Text |
data HostConfig Source #
Constructors
HostConfig | |
Fields
|
Instances
Eq HostConfig Source # | |
Show HostConfig Source # | |
Generic HostConfig Source # | |
ToJSON HostConfig Source # | |
FromJSON HostConfig Source # | |
type Rep HostConfig Source # | |
defaultHostConfig :: HostConfig Source #
Default host confiratuon used for creating a container.
Constructors
Ulimit | |
Fields
|
data ContainerResources Source #
Constructors
ContainerResources | |
Fields
|
Instances
data ContainerConfig Source #
Constructors
ContainerConfig | |
Fields
|
Instances
Eq ContainerConfig Source # | |
Show ContainerConfig Source # | |
Generic ContainerConfig Source # | |
ToJSON ContainerConfig Source # | |
FromJSON ContainerConfig Source # | |
type Rep ContainerConfig Source # | |
defaultContainerConfig :: Text -> ContainerConfig Source #
Container configuration used for creating a container with sensible defaults.
data ExposedPort Source #
ExposedPort represents a port (and it's type)
that a container should expose to other containers or the host system.
NOTE
: This does not automatically expose the port onto the host
system but rather it just tags it. It's best to be used with
the PublishAllPorts flag. It is also useful for
the daemon to know which Environment variables to
inject into a container linking to our container.
Example linking a Postgres container named db would inject the following
environment variables automatically if we set the corresponding
ExposedPort:
DB_PORT_5432_TCP_PORT="5432" DB_PORT_5432_TCP_PROTO="tcp" DB_PORT_5432_TCP="tcp://172.17.0.1:5432"
Constructors
ExposedPort Port PortType |
Instances
Eq ExposedPort Source # | |
Show ExposedPort Source # | |
ToJSON [ExposedPort] Source # | |
FromJSON [ExposedPort] Source # | |
data DeviceWeight Source #
Constructors
DeviceWeight | |
Fields
|
Instances
Eq DeviceWeight Source # | |
Show DeviceWeight Source # | |
ToJSON DeviceWeight Source # | |
FromJSON DeviceWeight Source # | |
data DeviceRate Source #
Constructors
DeviceRate | |
Fields
|
Instances
Eq DeviceRate Source # | |
Show DeviceRate Source # | |
ToJSON DeviceRate Source # | |
FromJSON DeviceRate Source # | |
addPortBinding :: PortBinding -> CreateOpts -> CreateOpts Source #
A convenience function that adds PortBindings to and exiting
CreateOpts record. Useful with defaultCreateOpts
Example:
>>>
let pb = PortBinding 80 TCP [HostPort "0.0.0.0" 8000]
>>>
addPortBinding pb $ defaultCreateOpts "nginx:latest"
addExposedPort :: ExposedPort -> CreateOpts -> CreateOpts Source #
Helper function for adding a ExposedPort to and existing CreateOpts record.
addBind :: Bind -> CreateOpts -> CreateOpts Source #
A helper function to more easily add a bind mount to existing CreateOpts records.
setCmd :: Text -> CreateOpts -> CreateOpts Source #
Helper function for adding a Command to and existing CreateOpts record.
addLink :: Link -> CreateOpts -> CreateOpts Source #
Helper function for adding a Link to and existing CreateOpts record.
addVolume :: Volume -> CreateOpts -> CreateOpts Source #
Helper function for adding a Volume to and existing CreateOpts record.
addVolumeFrom :: VolumeFrom -> CreateOpts -> CreateOpts Source #
Helper function for adding a VolumeFrom to and existing CreateOpts record.