h$SCݾ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~None #$58>?)dockerExposedPort 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" ndockerThis 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" }] }dockerUsed 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  VolumesFrom1. 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" docker;Set permissions on volumes that you mount in the container.dockerOptions for creating a networkdockerThe network's namedocker(Check for networks with duplicate names.docker)Name of the network driver plugin to use.docker(Restrict external access to the network.dockerEnable IPv6 on the network.dockerLog options used when requesting the log output from a container.dockerUsed for requesting N number of lines when tailing a containers log output.dockerTimestamp alias.dockerImage delete optsdocker2Options for when building images from a Dockerfiledocker9Image name in the form of name:tag; ie. myimage:latest.:wdocker(Name of dockerfile (default: Dockerfile)docker)Do not use cache when building the image.dockerRemove intermediate containers after a successful build (default true).docker&Always remove intermediate containers.dockerAlways attempt to pull a newer version of the *parent* image (ie. FROM debian:jessie).docker!Options for deleting a container.dockerAutomatically cleanup volumes that the container created as well.docker8If the container is still running force deletion anyway.docker!Options for starting a container.dockerOverride 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 _.docker&Options used for creating a Container.dockerData type for the NetworkingConfig section of the container settingsdockerEndpointsConfig is container configuration for a specific networkdocker=Data type used for parsing information from a list of images.dockerAlias for Tags.dockerContainer and Image Labels.dockerAlias for representing a RepoDigest. We could newtype this and add some validation.docker1Represents the state of the container life cycle.docker0Data type used for parsing a list of containers.dockerData type reprsenting the various network settings a container can have.dockerData type used for parsing the network information of each container when listing them.dockerData type used for representing the information of various ports that a contianer may expose.dockerData type used for represneting the version of the docker engine remote API.dockerList options used for filtering the list of container or images.dockerClient options used to configure the remote engine we're talking todockerData type used for parsing the container state from a list of containers.dockerData type used for parsing the mount information from a container list.dockerSignal used for sending to the process running in the container. The default signal is SIGTERM.dockerTimeout used for stopping a container. DefaultTimeout is 10 seconds.dockerID of a contianerdockerWe should newtype thisdockerWe should newtype thisdocker#List of Docker Engine API endpointsdockerSecond argument (Bool) is whether to follow which is currently hardcoded to False. See note in  for explanation why.dockerEither pull an image from docker hub or imports an image from a tarball (or URL)dockerA convenience function that adds PortBindings to and exiting  CreateOpts record. Useful with  Example:5let pb = PortBinding 80 TCP [HostPort "0.0.0.0" 8000]4addPortBinding pb $ defaultCreateOpts "nginx:latest"dockerHelper function for adding a  ExposedPort$ to and existing CreateOpts record.   -!"#$%&'()*+,./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`bacdhefgijklmnopqrstuvwxyz{|}~v~|}wxyz{stunopqrjklmidhefg`bac^_EFGHIJKLMNOPQRSTUVWXYZ[\]@ABCD -!"#$%&'()*+,./01  <=>?89:;234567None  58>?/;None  58>?1docker6Could not parse the response from the Docker endpoint.docker0Invalid exit code received from Docker endpoint.dockerUse  with  unixSocketPath# as argument as an alternative to . that lets you customise the settings of the  value that is returned.dockerConnect to a unix domain socket (the default docker socket is at /var/run/docker.sock)Docker seems to ignore the hostname in requests sent over unix domain sockets (and the port obviously doesn't matter either)dockerThe socket to connect todockerThe socket to connect toNone  58>?2None  58>?@docker1Gets the version of the docker engine remote API.docker-Lists all running docker containers. Pass in  {all = True}- to get a list of stopped containers as well.dockerLists all docker images.docker Deletes an image with the given . See ImageDeleteOpts for options and use  for sane defaults.docker$Creates a docker container but does not start it. See ' for a list of options and you can use  for some sane defaults.dockerStart a container from a given  that we get from . See  for a list of configuration options for starting a container. Use  for sane defaults.docker,Attempts to stop a container with the given  gracefully (SIGTERM). The docker daemon will wait for the given 0 and then send a SIGKILL killing the container.docker(Blocks until a container with the given # stops, then returns the exit codeNOTE: this endpoint will not return a response until the container has stopped. This function may therefore fail with a timeout error if the timeout is configured incorrectly in the HTTP manager.dockerSends a ! to the container with the given  . Same as $ but you choose the signal directly.docker$Restarts a container with the given .docker"Pauses a container with the given .docker$Unpauses a container with the given .docker#Deletes a container with the given . See ContainerDeleteOpts for options and use  for sane defaults.dockerGets  for a given .docker#Get's container's logs for a given  . This will only work with the   as the other driver types disable this endpoint and it will return a .See $ for options that you can pass and  for sane defaults.NOTE: his function will fetch the entire log that the container produced in the json-file on disk. Depending on the logging setup of the process in your container this can be a significant amount which might block your application...so use with caution.If you want to stream the logs from the container continuosly then use NOTE+: It's recommended to use one of the other 8s available (like syslog) for creating your containers.dockerContinuously gets the container's logs as a stream. Uses conduit.Example: >>> import Docker.Client >>> import Data.Maybe >>> import Conduit >>> h <- defaultHttpHanlder >>> let cid = fromJust $ toContainerID "fee86e1d522b" >>> runDockerT (defaultClientOpts, h) $ getContainerLogsStream defaultLogOpts cid stdoutC docker Build an Image from a DockerfileTODO: Add X-Registry-Config1TODO: Add support for remote URLs to a Dockerfile8TODO: Clean up temp tar.gz file after the image is builtdocker,Pulls an image from Docker Hub (by default).TODO: Add support for X-Registry-Auth and pulling from private docker registries.TODO: Implement importImage function that uses he same CreateImageEndpoint but rather than pulling from docker hub it imports the image from a tarball or a URL.dockerCreates networkdockerRemoves a network(c) Deni Bertovic, 2014BSD3deni@denibertovic.com experimentalPOSIXNone  58>?@   10/.,+*)('&%$#"-!23475689:;<=>?@ADBCEF]\[ZYXWVUTSRQPONMLKJIGH^_`cbadgfheijklmnorpqstuvw{zxy|}~      !"##$%&'()*+,-./01234556789::;<==>?@@ABCDDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefgghijjklmnopqrstuvwwxxyz{|}~%docker-0.7.0.0-3789B8mh0p92urWJ2BUGSMDocker.Client.TypesDocker.Client.InternalDocker.Client.HttpDocker.Client.UtilsDocker.Client.ApigetContainerLogs Docker.ClientContainerConfighostname domainnameuser attachStdin attachStdout attachStderr exposedPortstty openStdin stdinOnceenvcmdimagevolumes workingDir entrypointnetworkDisabled macAddresslabels stopSignal Entrypoint ExposedPortEnvVarValueNamePortContainerResources cpuShares blkioWeightblkioWeightDeviceblkioDeviceReadBpsblkioDeviceWriteBpsblkioDeviceReadIOpsblkioDeviceWriteIOps cpuPeriod cpusetCpus cpusetMemsdevices kernelMemorymemorymemoryReservation memorySwapoomKillDisableulimitsMemoryConstraintMemoryConstraintSizeBMBGB DeviceRatedeviceRatePathdeviceRateRate DeviceWeightdeviceWeightPathdeviceWeightWeightUlimit ulimitName ulimitSoft ulimitHard HostConfigbindscontainerIDFile logConfig networkMode portBindings restartPolicy volumeDriver volumesFromcapAddcapDropdns dnsOptions dnsSearch extraHostsipcModelinks oomScoreAdj privilegedpublishAllPortsreadonlyRootfs securityOptshmSize resourcesUTSMode IsolationDefaultProcessHyperv RestartPolicy RestartAlwaysRestartUnlessStoppedRestartOnFailure RestartOff RetryCountHostPorthostIphostPost PortBinding containerPortportType hostPortsPortTypeTCPUDP NetworkID NetworkMode NetworkBridge NetworkHostNetworkDisabled NetworkNamedLogDriverConfigLogDriverOption LogDriverTypeJsonFileSyslogJournaldGelfFluentdAwsLogsSplunkEtwlogsLoggingDisabledLink VolumeFrom ContainerNameDevice pathOnHostpathInContainercgroupPermissionsBindhostSrc containerDestvolumePermissionVolumeVolumePermission ReadWriteReadOnlyCreateNetworkOptscreateNetworkNamecreateNetworkCheckDuplicatecreateNetworkDrivercreateNetworkInternalcreateNetworkEnableIPv6LogOptsstdoutstderrsince timestampstail TailLogOptTailAll TimestampImageDeleteOpts BuildOptsbuildImageNamebuildDockerfileName buildQuiet buildNoCachebuildRemoveItermediatebuildForceRemoveIntermediatebuildPullParentContainerDeleteOpts deleteVolumesforce StartOpts detachKeys DetachKeysWithCtrl WithoutCtrlDefaultDetachKey CreateOptscontainerConfig hostConfignetworkingConfigNetworkingConfigendpointsConfigEndpointConfigImage DockerImageimageId imageCreated imageParentId imageRepoTagsimageRepoDigests imageSizeimageVirtualSize imageLabelsTagLabelDigestStateCreated RestartingRunningPausedExitedDead Container containerIdcontainerNamescontainerImageNamecontainerImageIdcontainerCommandcontainerCreatedAtcontainerStatecontainerStatuscontainerPortscontainerLabelscontainerNetworkscontainerMountsNetworkSettingsnetworkSettingsBridgenetworkSettingsSandboxIdnetworkSettingsHairpinMode#networkSettingsLinkLocalIPv6Address%networkSettingsLinkLocalIPv6PrefixLennetworkSettingsPortsnetworkSettingsSandboxKey#networkSettingsSecondaryIPAddresses%networkSettingsSecondaryIPv6AddressesnetworkSettingsEndpointIDnetworkSettingsGateway networkSettingsGlobalIPv6Address"networkSettingsGlobalIPv6PrefixLennetworkSettingsIpAddressnetworkSettingsIpPrefixLennetworkSettingsIpv6GatewaynetworkSettingsMacAddressnetworkSettingsNetworksNetworkNetworkOptionsnetworkOptionsIdnetworkOptionsEndpointIdnetworkOptionsGatewaynetworkOptionsIpAddressnetworkOptionsIpPrefixLennetworkOptionsIpV6GatewaynetworkOptionsGlobalIPv6Address!networkOptionsGlobalIPv6PrefixLennetworkOptionsMacAddressContainerPortInfo ipAddressInfoprivatePortInfopublicPortInfo portTypeInfo DockerVersionversion apiVersion gitCommit goVersionosarch kernelVersion buildTimeListOptsallDockerClientOptsapiVerbaseUrlContainerStatecontainerErrorexitCode finishedAt oomKilleddeadpausedpid restartingrunning startedAtstateMount mountName mountSourcemountDestination mountDrivermountRWmountPropogationContainerDetailsappArmorProfileargscontainerDetailsConfigcreateddrivercontainerDetailsHostConfig hostnamePath hostsPathlogPathcontainerDetailsIdcontainerDetailsImage mountLabelnamenetworkSettingspath processLabelresolveConfPath restartCountcontainerDetailsStatemountsSignalSIGHUPSIGINTSIGQUITSIGSTOPSIGTERMSIGUSR1SIGSIGKILL StatusCodeTimeoutDefaultTimeoutImageID ContainerID ApiVersionURLEndpointVersionEndpointListContainersEndpointListImagesEndpointCreateContainerEndpointStartContainerEndpointStopContainerEndpointWaitContainerEndpointKillContainerEndpointRestartContainerEndpointPauseContainerEndpointUnpauseContainerEndpointContainerLogsEndpointDeleteContainerEndpointInspectContainerEndpointBuildImageEndpointCreateImageEndpointDeleteImageEndpointCreateNetworkEndpointRemoveNetworkEndpointfromContainerID toContainerID fromImageID toImageIDdefaultClientOptsdefaultListOptsdropImagePrefixdefaultContainerConfigdefaultHostConfigdefaultContainerResourcesdefaultCreateOptsdefaultStartOptsdefaultBuildOptsdefaultContainerDeleteOptsdefaultImageDeleteOptsdefaultLogOptsdefaultCreateNetworkOpts fromNetworkID toNetworkIDaddBindsetCmdaddLink addVolume addVolumeFromaddPortBindingaddExposedPort$fFromJSONContainerID$fToJSONContainerID$fFromJSONImageID$fToJSONImageID$fFromJSONStatusCode$fToJSONStatusCode$fToJSONSignal$fFromJSONSignal$fFromJSONMount$fFromJSONDockerVersion$fToJSONDockerVersion$fFromJSONNetworkOptions$fFromJSONState$fFromJSONContainerState$fToJSONEndpointConfig$fToJSONNetworkingConfig$fToJSONCreateNetworkOpts$fFromJSONVolumePermission$fToJSONVolumePermission $fFromJSON[] $fToJSON[] $fToJSONBind$fFromJSONBind$fFromJSONDevice$fToJSONDevice$fToJSONVolumeFrom$fFromJSONVolumeFrom $fToJSONLink$fFromJSONLink$fToJSONLogDriverType$fFromJSONLogDriverType$fToJSONNetworkMode$fFromJSONNetworkMode $fFromJSON[]0$fToJSONNetworkID$fFromJSONNetworkID$fFromJSONPortType$fToJSONPortType$fShowPortType$fToJSONRestartPolicy$fFromJSONRestartPolicy$fToJSONUlimit$fFromJSONUlimit$fToJSONDeviceWeight$fFromJSONDeviceWeight$fToJSONDeviceRate$fFromJSONDeviceRate$fFromJSONMemoryConstraint$fToJSONMemoryConstraint$fFromJSONContainerResources$fFromJSONHostPort$fToJSONHostPort $fToJSON[]0 $fFromJSON[]1$fFromJSONNetworkSettings$fFromJSONContainerPortInfo $fFromJSON[]2 $fToJSON[]1$fFromJSONLogDriverConfig$fToJSONLogDriverConfig$fToJSONHostConfig$fFromJSONHostConfig $fFromJSON[]3 $fToJSON[]2$fFromJSONImage$fFromJSONContainer$fToJSONEnvVar$fFromJSONEnvVar $fToJSON[]3 $fFromJSON[]4$fFromJSONEntrypoint$fToJSONEntrypoint$fFromJSONContainerConfig$fToJSONContainerConfig$fToJSONCreateOpts$fFromJSONContainerDetails$fEqContainerDetails$fShowContainerDetails$fGenericContainerDetails $fEqEndpoint$fShowEndpoint$fEqCreateOpts$fShowCreateOpts$fEqContainerConfig$fShowContainerConfig$fGenericContainerConfig$fEqEntrypoint$fShowEntrypoint$fGenericEntrypoint$fEqExposedPort$fShowExposedPort $fEqEnvVar $fShowEnvVar$fShowContainer $fEqContainer $fShowImage $fEqImage$fGenericImage $fEqLabel $fShowLabel$fEqHostConfig$fShowHostConfig$fGenericHostConfig$fEqLogDriverConfig$fShowLogDriverConfig$fEqLogDriverOption$fShowLogDriverOption$fEqContainerPortInfo$fShowContainerPortInfo$fEqNetworkSettings$fShowNetworkSettings$fEqPortBinding$fShowPortBinding $fEqHostPort$fShowHostPort$fEqContainerResources$fShowContainerResources$fGenericContainerResources$fEqMemoryConstraint$fShowMemoryConstraint$fEqMemoryConstraintSize$fShowMemoryConstraintSize$fShowDeviceRate$fEqDeviceRate$fShowDeviceWeight$fEqDeviceWeight $fEqUlimit $fShowUlimit$fGenericUlimit $fEqUTSMode $fShowUTSMode $fEqIsolation$fShowIsolation$fEqRestartPolicy$fShowRestartPolicy $fEqPortType$fGenericPortType$fReadPortType $fOrdPortType $fEqNetworkID$fShowNetworkID $fEqNetwork $fShowNetwork$fEqNetworkMode$fShowNetworkMode$fOrdNetworkMode$fEqLogDriverType$fShowLogDriverType$fEqLink $fShowLink$fEqVolumeFrom$fShowVolumeFrom $fEqDevice $fShowDevice$fGenericDevice$fEqBind $fShowBind $fEqVolume $fShowVolume$fEqVolumePermission$fShowVolumePermission$fGenericVolumePermission$fEqCreateNetworkOpts$fShowCreateNetworkOpts $fEqLogOpts $fShowLogOpts$fEqTailLogOpt$fShowTailLogOpt$fEqImageDeleteOpts$fShowImageDeleteOpts $fEqBuildOpts$fShowBuildOpts$fEqContainerDeleteOpts$fShowContainerDeleteOpts $fEqStartOpts$fShowStartOpts$fEqDetachKeys$fShowDetachKeys$fEqNetworkingConfig$fShowNetworkingConfig$fEqEndpointConfig$fShowEndpointConfig$fEqContainerState$fShowContainerState$fGenericContainerState $fEqState $fShowState$fGenericState$fEqNetworkOptions$fShowNetworkOptions$fShowDockerVersion$fEqDockerVersion$fGenericDockerVersion $fEqListOpts$fShowListOpts$fEqDockerClientOpts$fShowDockerClientOpts $fEqMount $fShowMount$fGenericMount $fEqSignal $fShowSignal $fEqTimeout $fShowTimeout $fEqImageID $fShowImageID$fEqContainerID$fShowContainerID encodeURLencodeURLWithQueryencodeQ getEndpointgetEndpointRequestBodygetEndpointContentTypegetEndpointTimeoutDockerT unDockerT DockerErrorDockerConnectionErrorDockerInvalidRequestDockerClientErrorDockerClientDecodeErrorDockerInvalidStatusCodeGenericDockerError HttpHandlerHttpVerbResponseRequest runDockerT mkHttpRequestdefaultHttpHandler httpHandlerdefaultUnixManagerSettingsunixHttpHandler$clientParamsWithClientAuthenticationclientParamsSetCAstatusCodeToError$fMonadIODockerT$fMonadTransDockerT$fMonadReader(,)DockerT$fMonadDockerT$fApplicativeDockerT$fFunctorDockerT$fShowDockerErrorBuildContextRootDir DockerIgnoreexclusionPatternsinclusionPatternsInclusionPatternExclusionPatternDirTreeFilemakeBuildContextmakeBuildContext'parseDockerIgnoreFilegetBuildContext shouldInclude shouldRecursedockerIgnoreDecisionexclusionCheckinclusionCheck$fEqBuildContextRootDir$fShowBuildContextRootDir$fEqDockerIgnore$fShowDockerIgnore$fEqInclusionPattern$fShowInclusionPattern$fEqExclusionPattern$fShowExclusionPatterngetDockerVersionlistContainers listImages deleteImagecreateContainerstartContainer stopContainer waitContainer killContainerrestartContainerpauseContainerunpauseContainerdeleteContainerinspectContainergetContainerLogsStreambuildImageFromDockerfile pullImage createNetwork removeNetwork)http-client-0.7.11-1dBMrFU8pSaAfjmquUCg7HNetwork.HTTP.Client.TypesManagerSettings