Skip to main content

Docker Engine API

This Integration is part of the DevSecOps Pack.#

Supported versions

Supported Cortex XSOAR versions: 6.0.0 and later.

The Engine API is an HTTP API served by Docker Engine. It is the API the Docker client uses to communicate with the Engine, so everything the Docker client can do can be done with the API. This integration was integrated and tested with version 20.10.17 (API Version 1.41) of Docker Engine API

Configure Docker Engine API in Cortex#

ParameterRequired
Server URL (e.g. https://www.example.com:1000)True
Docker Client CertificateTrue
Docker Client Private KeyTrue
CA CertificateFalse
Trust any certificate (not secure)False
Use system proxy settingsFalse
Registry Identity TokenFalse
Registry UsernameFalse
Registry PasswordFalse
Registry Server Address (e.g. docker.io)False

Note: The Docker private key must be first stored into XSOAR as a credential attribute of a saved credential, and this credential must be selected as the auth key.

Docker Engine#

Docker Engine is an open source containerization technology for building and containerizing your applications. Docker Engine acts as a client-server application with:

  • A server with a long-running daemon process dockerd.
  • APIs which specify interfaces that programs can use to talk to and instruct the Docker daemon.
  • A command line interface (CLI) client docker.

The CLI uses Docker APIs to control or interact with the Docker daemon through scripting or direct CLI commands. Many other Docker applications use the underlying API and CLI. The daemon creates and manage Docker objects, such as images, containers, networks, and volumes.

Requirements#

By default, Docker runs through a non-networked UNIX socket. It can also optionally communicate using an HTTP socket. This integration manages a Docker Server that has had it's Docker daemon API interface exposed over HTTPS.

Refer to the Docker documentation for how to configure Docker server to securely accept HTTPS connections.

To use this integration you need:

  1. The Docker server to be running in TLS (HTTPS) mode
  2. Have generated a certificate for this integration to act as a Docker Client authorised to manage this server

The integration takes the client certificate, private key, and CA's certificate as paramaters. These three are expected in the PEM format.

If a CA cert is not provided, the Docker server certificate will be validated using the public CA's included in Python Requests. Or not validated at all if Trust any certificate (not secure) is selected.

Docker Registry Authentication#

Authentication for registries is handled by the integration not the Docker Server. This is configured as a integration parameter. This can be in the form of either a identitytoken or Username/Password/Serveraddress. These four parameters are optional and if none authentication credentials are provided the integration will function in "Anonymous mode". Some Commands may not function as a result.

Commands#

You can execute these commands from the CLI, as part of an automation, or in a playbook. After you successfully execute a command, a DBot message appears in the War Room with the command details.

docker-build-prune#


Delete builder cache

Base Command#

docker-build-prune

Input#

Argument NameDescriptionRequired
keep_storageAmount of disk space in bytes to keep for cache.Optional
prune_allRemove all types of build cache.Optional
filtersA JSON encoded value of the filters (a map[string][]string) to process on the list of build cache objects. Available filters: - until= duration : duration relative to daemon's time, during which build cache was not used, in Go's duration format (e.g., '24h') - id= id - parent= id - type= string - description= string - inuse - shared - private .Optional

Context Output#

PathTypeDescription
Docker.BuildPruneResponse.SpaceReclaimedNumberDisk space reclaimed in bytes

Command Example#

!docker-build-prune

Context Example#

{
"Docker": {
"BuildPruneResponse": {
"CachesDeleted": null,
"SpaceReclaimed": 0
}
}
}

Human Readable Output#

Results#

CachesDeletedSpaceReclaimed
0

docker-config-create#


Create a config

Base Command#

docker-config-create

Input#

Argument NameDescriptionRequired
configspec_nameUser-defined name of the config.Optional
configspec_labelsUser-defined key/value metadata.Optional
configspec_dataBase64-url-safe-encoded (RFC 4648) config data. .Optional
configspec_templating_Nameconfigspec_templating Name.Optional
configspec_templating_Optionsconfigspec_templating Options.Optional

Context Output#

There is no context output for this command.

Command Example#

!docker-config-create configspec_name="test_config" configspec_data="VEhJUyBJUyBOT1QgQSBSRUFMIENFUlRJRklDQVRFCg=="

Context Example#

{
"Docker": {
"ID": "vfih5lb2qn8rrxla178td04al"
}
}

Human Readable Output#

Results#

ID
vfih5lb2qn8rrxla178td04al

docker-config-inspect#


Inspect a config

Base Command#

docker-config-inspect

Input#

Argument NameDescriptionRequired
idID of the config.Required

Context Output#

PathTypeDescription
Docker.Config.IDStringDocker Config ID
Docker.Config.CreatedAtStringDocker Config CreatedAt
Docker.Config.UpdatedAtStringDocker Config UpdatedAt

Command Example#

!docker-config-inspect id="ud0ychozv55f7n0pzk6qo9kq9"

Context Example#

{
"Docker": {
"Config": {
"message": "config ud0ychozv55f7n0pzk6qo9kq9 not found"
}
}
}

Human Readable Output#

Results#

message
config ud0ychozv55f7n0pzk6qo9kq9 not found

docker-config-list#


List configs

Base Command#

docker-config-list

Input#

Argument NameDescriptionRequired
filtersA JSON encoded value of the filters .Optional

Context Output#

PathTypeDescription
Docker.Config.IDStringDocker Config ID
Docker.Config.CreatedAtStringDocker Config CreatedAt
Docker.Config.UpdatedAtStringDocker Config UpdatedAt

Command Example#

!docker-config-list

Context Example#

{
"Docker": {
"Config": [
{
"CreatedAt": "2021-01-10T07:33:59.040093065Z",
"ID": "vfih5lb2qn8rrxla178td04al",
"Spec": {
"Data": "VEhJUyBJUyBOT1QgQSBSRUFMIENFUlRJRklDQVRFCg==",
"Labels": {},
"Name": "test_config"
},
"UpdatedAt": "2021-01-10T07:33:59.040093065Z",
"Version": {
"Index": 11
}
}
]
}
}

Human Readable Output#

Results#

CreatedAtIDSpecUpdatedAtVersion
2021-01-10T07:33:59.040093065Zvfih5lb2qn8rrxla178td04alName: test_config
Labels: {}
Data: VEhJUyBJUyBOT1QgQSBSRUFMIENFUlRJRklDQVRFCg==
2021-01-10T07:33:59.040093065ZIndex: 11

docker-container-changes#


Get changes on a container’s filesystem

Base Command#

docker-container-changes

Input#

Argument NameDescriptionRequired
idID or name of the container.Required

Context Output#

PathTypeDescription
Docker.ContainerChangeResponseItem.PathStringPath to file that has changed
Docker.ContainerChangeResponseItem.KindNumberKind of change

Command Example#

!docker-container-changes id="04be62e20d33bf299865e26b657ec5516928641558ccff6a899407ab0b6b1d94"

Context Example#

{
"Docker": {
"ContainerChangeResponseItem": [
{
"Kind": 0,
"Path": "/tmp"
},
{
"Kind": 1,
"Path": "/tmp/opentaxii.yml"
},
{
"Kind": 1,
"Path": "/opentaxii.yml"
}
]
}
}

Human Readable Output#

Results#

KindPath
0/tmp
1/tmp/opentaxii.yml
1/opentaxii.yml

docker-container-create#


Create a container

Base Command#

docker-container-create

Input#

Argument NameDescriptionRequired
nameAssign the specified name to the container. Must match /?[a-zA-Z0-9][a-zA-Z0-9_.-]+. .Optional
containerconfig_hostnameThe hostname to use for the container, as a valid RFC 1123 hostname.Optional
containerconfig_domainnameThe domain name to use for the container.Optional
containerconfig_userThe user that commands are run as inside the container.Optional
containerconfig_attachstdinWhether to attach to stdin.Optional
containerconfig_attachstdoutWhether to attach to stdout.Optional
containerconfig_attachstderrWhether to attach to stderr.Optional
containerconfig_exposedportsAn object mapping ports to an empty object in the form: {" port / tcp\|udp\|sctp ": {}} .Optional
containerconfig_ttyAttach standard streams to a TTY, including stdin if it is not closed. .Optional
containerconfig_openstdinOpen stdin.Optional
containerconfig_stdinonceClose stdin after one attached client disconnects.Optional
containerconfig_envA list of environment variables to set inside the container in the form ["VAR=value", ...]. A variable without = is removed from the environment, rather than to have an empty value. .Optional
containerconfig_cmdCommand to run specified as a string or an array of strings. .Optional
containerconfig_healthcheck_Testcontainerconfig_healthcheck Test.Optional
containerconfig_healthcheck_Intervalcontainerconfig_healthcheck Interval.Optional
containerconfig_healthcheck_Timeoutcontainerconfig_healthcheck Timeout.Optional
containerconfig_healthcheck_Retriescontainerconfig_healthcheck Retries.Optional
containerconfig_healthcheck_StartPeriodcontainerconfig_healthcheck StartPeriod.Optional
containerconfig_argsescapedCommand is already escaped (Windows only).Optional
containerconfig_imageThe name of the image to use when creating the container/ .Optional
containerconfig_volumesAn object mapping mount point paths inside the container to empty objects. .Optional
containerconfig_workingdirThe working directory for commands to run in.Optional
containerconfig_entrypointThe entry point for the container as a string or an array of strings. If the array consists of exactly one empty string ([""]) then the entry point is reset to system default (i.e., the entry point used by docker when there is no ENTRYPOINT instruction in the Dockerfile). .Optional
containerconfig_networkdisabledDisable networking for the container.Optional
containerconfig_macaddressMAC address of the container.Optional
containerconfig_onbuildONBUILD metadata that were defined in the image's Dockerfile. .Optional
containerconfig_labelsUser-defined key/value metadata.Optional
containerconfig_stopsignalSignal to stop a container as a string or unsigned integer. .Optional
containerconfig_stoptimeoutTimeout to stop a container in seconds.Optional
containerconfig_shellShell for when RUN, CMD, and ENTRYPOINT uses a shell. .Optional
hostconfig_bindsA list of volume bindings for this container.Optional
hostconfig_containeridfilePath to a file where the container ID is written.Optional
hostconfig_logconfig_Typehostconfig_logconfig Type.Optional
hostconfig_logconfig_ConfigLog Config.Optional
hostconfig_networkmodeNetwork mode to use for this container.Optional
hostconfig_portbindingshostconfig port bindings.Optional
hostconfig_restartpolicy_Namehostconfig_restartpolicy Name.Optional
hostconfig_restartpolicy_MaximumRetryCounthostconfig_restartpolicy MaximumRetryCount.Optional
hostconfig_autoremoveAutomatically remove the container when the container's process exits. This has no effect if RestartPolicy is set. .Optional
hostconfig_volumedriverDriver that this container uses to mount volumes.Optional
hostconfig_volumesfromA list of volumes to inherit from another container.Optional
hostconfig_mountsSpecification for mounts to be added to the container. .Optional
hostconfig_capaddA list of kernel capabilities to add to the container. Conflicts with option 'Capabilities'. .Optional
hostconfig_capdropA list of kernel capabilities to drop from the container. Conflicts with option 'Capabilities'. .Optional
hostconfig_cgroupnsmodecgroup namespace mode for the container. Possible values are: - "private": the container runs in its own private cgroup namespace - "host": use the host system's cgroup namespace If not specified, the daemon default is used, which can either be "private" or "host", depending on daemon version, kernel support and configuration. . Possible values are: private, host.Optional
hostconfig_dnsA list of DNS servers for the container to use.Optional
hostconfig_dnsoptionsA list of DNS options.Optional
hostconfig_dnssearchA list of DNS search domains.Optional
hostconfig_extrahostsA list of hostnames/IP mappings to add to the container's /etc/hosts file. Specified in the form ["hostname:IP"]. .Optional
hostconfig_groupaddA list of additional groups that the container process will run as. .Optional
hostconfig_ipcmodeIPC sharing mode for the container. Possible values are: - "none": own private IPC namespace, with /dev/shm not mounted - "private": own private IPC namespace - "shareable": own private IPC namespace, with a possibility to share it with other containers - "container: name\|id ": join another (shareable) container's IPC namespace - "host": use the host system's IPC namespace If not specified, daemon default is used, which can either be "private" or "shareable", depending on daemon version and configuration. .Optional
hostconfig_cgroupCgroup to use for the container.Optional
hostconfig_linksA list of links for the container in the form container_name:alias. .Optional
hostconfig_oomscoreadjAn integer value containing the score given to the container in order to tune OOM killer preferences. .Optional
hostconfig_pidmodeSet the PID (Process) Namespace mode for the container. It can be either: - "container: name\|id ": joins another container's PID namespace - "host": use the host's PID namespace inside the container .Optional
hostconfig_privilegedGives the container full access to the host.Optional
hostconfig_publishallportsAllocates an ephemeral host port for all of a container's exposed ports. Ports are de-allocated when the container stops and allocated when the container starts. The allocated port might be changed when restarting the container. The port is selected from the ephemeral port range that depends on the kernel. For example, on Linux the range is defined by /proc/sys/net/ipv4/ip_local_port_range. .Optional
hostconfig_readonlyrootfsMount the container's root filesystem as read only.Optional
hostconfig_securityoptA list of string values to customize labels for MLS systems, such as SELinux.Optional
hostconfig_storageoptStorage driver options for this container, in the form {"size": "120G"}. .Optional
hostconfig_tmpfsA map of container directories which should be replaced by tmpfs mounts, and their corresponding mount options. For example: { "/run": "rw,noexec,nosuid,size=65536k" } .Optional
hostconfig_utsmodeUTS namespace to use for the container.Optional
hostconfig_usernsmodeSets the usernamespace mode for the container when usernamespace remapping option is enabled. .Optional
hostconfig_shmsizeSize of /dev/shm in bytes. If omitted, the system uses 64MB. .Optional
hostconfig_sysctlsA list of kernel meters (sysctls) to set in the container. For example: {"net.ipv4.ip_forward": "1"} .Optional
hostconfig_runtimeRuntime to use with this container.Optional
hostconfig_consolesizeInitial console size, as an [height, width] array. (Windows only) .Optional
hostconfig_isolationIsolation technology of the container. (Windows only) . Possible values are: default, process, hyperv.Optional
hostconfig_maskedpathsThe list of paths to be masked inside the container (this overrides the default set of paths). .Optional
hostconfig_readonlypathsThe list of paths to be set as read-only inside the container (this overrides the default set of paths). .Optional
networkingconfig_endpointsconfigA mapping of network name to endpoint configuration for that network. .Optional

Context Output#

There is no context output for this command.

Command Example#

!docker-container-create name="hello-docker" containerconfig_image="hello-world"

Context Example#

{
"Docker": {
"message": "Conflict. The container name \"/hello-docker\" is already in use by container \"7997c8bd061e762bfdb105274af3f60e5f2254aaba2172744db1edfccc2b8a41\". You have to remove (or rename) that container to be able to reuse that name."
}
}

Human Readable Output#

Results#

message
Conflict. The container name "/hello-docker" is already in use by container "7997c8bd061e762bfdb105274af3f60e5f2254aaba2172744db1edfccc2b8a41". You have to remove (or rename) that container to be able to reuse that name.

docker-container-delete#


Remove a container

Base Command#

docker-container-delete

Input#

Argument NameDescriptionRequired
idID or name of the container.Required
vRemove anonymous volumes associated with the container. Possible values are: false, true. Default is false.Optional
forceIf the container is running, kill it before removing it. Possible values are: false, true. Default is false.Optional
linkRemove the specified link associated with the container. Possible values are: false, true. Default is false.Optional

Context Output#

PathTypeDescription
Docker.ContainerDelete.Status CodeStringImage Tag Result

Command example#

!docker-container-delete id="hello-docker"

Context Example#

{
"Docker": {
"Status Code": 204
}
}

Human Readable Output#

Results#

Status Code
204

docker-container-inspect#


Inspect a container

Base Command#

docker-container-inspect

Input#

Argument NameDescriptionRequired
idID or name of the container.Required
sizeReturn the size of container as fields SizeRw and SizeRootFs.Optional

Context Output#

PathTypeDescription
Docker.ContainerInspectResponse.IdStringThe ID of the container
Docker.ContainerInspectResponse.CreatedStringThe time the container was created
Docker.ContainerInspectResponse.PathStringThe path to the command being run
Docker.ContainerInspectResponse.ImageStringThe container's image ID
Docker.ContainerInspectResponse.ResolvConfPathStringDocker ContainerInspectResponse ResolvConfPath
Docker.ContainerInspectResponse.HostnamePathStringDocker ContainerInspectResponse HostnamePath
Docker.ContainerInspectResponse.HostsPathStringDocker ContainerInspectResponse HostsPath
Docker.ContainerInspectResponse.LogPathStringDocker ContainerInspectResponse LogPath
Docker.ContainerInspectResponse.NameStringDocker ContainerInspectResponse Name
Docker.ContainerInspectResponse.RestartCountNumberDocker ContainerInspectResponse RestartCount
Docker.ContainerInspectResponse.DriverStringDocker ContainerInspectResponse Driver
Docker.ContainerInspectResponse.PlatformStringDocker ContainerInspectResponse Platform
Docker.ContainerInspectResponse.MountLabelStringDocker ContainerInspectResponse MountLabel
Docker.ContainerInspectResponse.ProcessLabelStringDocker ContainerInspectResponse ProcessLabel
Docker.ContainerInspectResponse.AppArmorProfileStringDocker ContainerInspectResponse AppArmorProfile
Docker.ContainerInspectResponse.SizeRwNumberThe size of files that have been created or changed by this container.
Docker.ContainerInspectResponse.SizeRootFsNumberThe total size of all the files in this container.
Docker.ContainerInspectResponse.Mounts.TypeStringDocker ContainerInspectResponse Mounts Type
Docker.ContainerInspectResponse.Mounts.NameStringDocker ContainerInspectResponse Mounts Name
Docker.ContainerInspectResponse.Mounts.SourceStringDocker ContainerInspectResponse Mounts Source
Docker.ContainerInspectResponse.Mounts.DestinationStringDocker ContainerInspectResponse Mounts Destination
Docker.ContainerInspectResponse.Mounts.DriverStringDocker ContainerInspectResponse Mounts Driver
Docker.ContainerInspectResponse.Mounts.ModeStringDocker ContainerInspectResponse Mounts Mode
Docker.ContainerInspectResponse.Mounts.RWBooleanDocker ContainerInspectResponse Mounts RW
Docker.ContainerInspectResponse.Mounts.PropagationStringDocker ContainerInspectResponse Mounts Propagation

Command Example#

!docker-container-inspect id="7997c8bd061e762bfdb105274af3f60e5f2254aaba2172744db1edfccc2b8a41"

Context Example#

{
"Docker": {
"ContainerInspectResponse": {
"AppArmorProfile": "",
"Args": [],
"Config": {
"AttachStderr": false,
"AttachStdin": false,
"AttachStdout": false,
"Cmd": [
"/hello"
],
"Domainname": "",
"Entrypoint": null,
"Env": [
"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
],
"Hostname": "7997c8bd061e",
"Image": "hello-world",
"Labels": {},
"OnBuild": null,
"OpenStdin": false,
"StdinOnce": false,
"StopSignal": "SIGTERM",
"Tty": false,
"User": "",
"Volumes": null,
"WorkingDir": ""
},
"Created": "2021-01-08T16:22:02.396165935Z",
"Driver": "overlay2",
"ExecIDs": null,
"GraphDriver": {
"Data": {
"LowerDir": "/var/lib/docker/overlay2/2ce039a43f37e7fae47787c5533de9e83f2c2d16876938e1183e6ee7dbf7f3d8-init/diff:/var/lib/docker/overlay2/1f480a7135adc30bb61259a8c1b45c7213946dfc1959c082a53c174d47c8f73f/diff",
"MergedDir": "/var/lib/docker/overlay2/2ce039a43f37e7fae47787c5533de9e83f2c2d16876938e1183e6ee7dbf7f3d8/merged",
"UpperDir": "/var/lib/docker/overlay2/2ce039a43f37e7fae47787c5533de9e83f2c2d16876938e1183e6ee7dbf7f3d8/diff",
"WorkDir": "/var/lib/docker/overlay2/2ce039a43f37e7fae47787c5533de9e83f2c2d16876938e1183e6ee7dbf7f3d8/work"
},
"Name": "overlay2"
},
"HostConfig": {
"AutoRemove": false,
"Binds": null,
"BlkioDeviceReadBps": null,
"BlkioDeviceReadIOps": null,
"BlkioDeviceWriteBps": null,
"BlkioDeviceWriteIOps": null,
"BlkioWeight": 0,
"BlkioWeightDevice": null,
"CapAdd": null,
"CapDrop": null,
"Cgroup": "",
"CgroupParent": "",
"CgroupnsMode": "host",
"ConsoleSize": [
0,
0
],
"ContainerIDFile": "",
"CpuCount": 0,
"CpuPercent": 0,
"CpuPeriod": 0,
"CpuQuota": 0,
"CpuRealtimePeriod": 0,
"CpuRealtimeRuntime": 0,
"CpuShares": 0,
"CpusetCpus": "",
"CpusetMems": "",
"DeviceCgroupRules": null,
"DeviceRequests": null,
"Devices": null,
"Dns": [],
"DnsOptions": [],
"DnsSearch": [],
"ExtraHosts": null,
"GroupAdd": null,
"IOMaximumBandwidth": 0,
"IOMaximumIOps": 0,
"IpcMode": "private",
"Isolation": "",
"KernelMemory": 0,
"KernelMemoryTCP": 0,
"Links": null,
"LogConfig": {
"Config": {},
"Type": "json-file"
},
"MaskedPaths": [
"/proc/asound",
"/proc/acpi",
"/proc/kcore",
"/proc/keys",
"/proc/latency_stats",
"/proc/timer_list",
"/proc/timer_stats",
"/proc/sched_debug",
"/proc/scsi",
"/sys/firmware"
],
"Memory": 0,
"MemoryReservation": 0,
"MemorySwap": 0,
"MemorySwappiness": null,
"NanoCpus": 0,
"NetworkMode": "default",
"OomKillDisable": false,
"OomScoreAdj": 0,
"PidMode": "",
"PidsLimit": null,
"PortBindings": null,
"Privileged": false,
"PublishAllPorts": false,
"ReadonlyPaths": [
"/proc/bus",
"/proc/fs",
"/proc/irq",
"/proc/sys",
"/proc/sysrq-trigger"
],
"ReadonlyRootfs": false,
"RestartPolicy": {
"MaximumRetryCount": 0,
"Name": ""
},
"Runtime": "runc",
"SecurityOpt": null,
"ShmSize": 67108864,
"UTSMode": "",
"Ulimits": null,
"UsernsMode": "",
"VolumeDriver": "",
"VolumesFrom": null
},
"HostnamePath": "/var/lib/docker/containers/7997c8bd061e762bfdb105274af3f60e5f2254aaba2172744db1edfccc2b8a41/hostname",
"HostsPath": "/var/lib/docker/containers/7997c8bd061e762bfdb105274af3f60e5f2254aaba2172744db1edfccc2b8a41/hosts",
"Id": "7997c8bd061e762bfdb105274af3f60e5f2254aaba2172744db1edfccc2b8a41",
"Image": "sha256:bf756fb1ae65adf866bd8c456593cd24beb6a0a061dedf42b26a993176745f6b",
"LogPath": "/var/lib/docker/containers/7997c8bd061e762bfdb105274af3f60e5f2254aaba2172744db1edfccc2b8a41/7997c8bd061e762bfdb105274af3f60e5f2254aaba2172744db1edfccc2b8a41-json.log",
"MountLabel": "",
"Mounts": [],
"Name": "/hello-docker",
"NetworkSettings": {
"Bridge": "",
"EndpointID": "",
"Gateway": "",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"HairpinMode": false,
"IPAddress": "",
"IPPrefixLen": 0,
"IPv6Gateway": "",
"LinkLocalIPv6Address": "",
"LinkLocalIPv6PrefixLen": 0,
"MacAddress": "",
"Networks": {
"bridge": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "",
"Gateway": "",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": null,
"IPAddress": "",
"IPPrefixLen": 0,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "",
"NetworkID": "b5b425aad28e5f4b9c9b118257ce214455d84a7901e5a90d79e3ae4f527f725e"
}
},
"Ports": {},
"SandboxID": "6d48185534118ce5b3549501c122dd1f67831418c306ef2291cfda6763db6e0e",
"SandboxKey": "/var/run/docker/netns/6d4818553411",
"SecondaryIPAddresses": null,
"SecondaryIPv6Addresses": null
},
"Path": "/hello",
"Platform": "linux",
"ProcessLabel": "",
"ResolvConfPath": "/var/lib/docker/containers/7997c8bd061e762bfdb105274af3f60e5f2254aaba2172744db1edfccc2b8a41/resolv.conf",
"RestartCount": 0,
"State": {
"Dead": false,
"Error": "",
"ExitCode": 0,
"FinishedAt": "2021-01-08T16:26:46.413127348Z",
"OOMKilled": false,
"Paused": false,
"Pid": 0,
"Restarting": false,
"Running": false,
"StartedAt": "2021-01-08T16:26:46.401416786Z",
"Status": "exited"
}
}
}
}

Human Readable Output#

Results#

AppArmorProfileArgsConfigCreatedDriverExecIDsGraphDriverHostConfigHostnamePathHostsPathIdImageLogPathMountLabelMountsNameNetworkSettingsPathPlatformProcessLabelResolvConfPathRestartCountState
Hostname: 7997c8bd061e
Domainname:
User:
AttachStdin: false
AttachStdout: false
AttachStderr: false
Tty: false
OpenStdin: false
StdinOnce: false
Env: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
Cmd: /hello
Image: hello-world
Volumes: null
WorkingDir:
Entrypoint: null
OnBuild: null
Labels: {}
StopSignal: SIGTERM
2021-01-08T16:22:02.396165935Zoverlay2Data: {"LowerDir": "/var/lib/docker/overlay2/2ce039a43f37e7fae47787c5533de9e83f2c2d16876938e1183e6ee7dbf7f3d8-init/diff:/var/lib/docker/overlay2/1f480a7135adc30bb61259a8c1b45c7213946dfc1959c082a53c174d47c8f73f/diff", "MergedDir": "/var/lib/docker/overlay2/2ce039a43f37e7fae47787c5533de9e83f2c2d16876938e1183e6ee7dbf7f3d8/merged", "UpperDir": "/var/lib/docker/overlay2/2ce039a43f37e7fae47787c5533de9e83f2c2d16876938e1183e6ee7dbf7f3d8/diff", "WorkDir": "/var/lib/docker/overlay2/2ce039a43f37e7fae47787c5533de9e83f2c2d16876938e1183e6ee7dbf7f3d8/work"}
Name: overlay2
Binds: null
ContainerIDFile:
LogConfig: {"Type": "json-file", "Config": {}}
NetworkMode: default
PortBindings: null
RestartPolicy: {"Name": "", "MaximumRetryCount": 0}
AutoRemove: false
VolumeDriver:
VolumesFrom: null
CapAdd: null
CapDrop: null
CgroupnsMode: host
Dns:
DnsOptions:
DnsSearch:
ExtraHosts: null
GroupAdd: null
IpcMode: private
Cgroup:
Links: null
OomScoreAdj: 0
PidMode:
Privileged: false
PublishAllPorts: false
ReadonlyRootfs: false
SecurityOpt: null
UTSMode:
UsernsMode:
ShmSize: 67108864
Runtime: runc
ConsoleSize: 0,
0
Isolation:
CpuShares: 0
Memory: 0
NanoCpus: 0
CgroupParent:
BlkioWeight: 0
BlkioWeightDevice: null
BlkioDeviceReadBps: null
BlkioDeviceWriteBps: null
BlkioDeviceReadIOps: null
BlkioDeviceWriteIOps: null
CpuPeriod: 0
CpuQuota: 0
CpuRealtimePeriod: 0
CpuRealtimeRuntime: 0
CpusetCpus:
CpusetMems:
Devices: null
DeviceCgroupRules: null
DeviceRequests: null
KernelMemory: 0
KernelMemoryTCP: 0
MemoryReservation: 0
MemorySwap: 0
MemorySwappiness: null
OomKillDisable: false
PidsLimit: null
Ulimits: null
CpuCount: 0
CpuPercent: 0
IOMaximumIOps: 0
IOMaximumBandwidth: 0
MaskedPaths: /proc/asound,
/proc/acpi,
/proc/kcore,
/proc/keys,
/proc/latency_stats,
/proc/timer_list,
/proc/timer_stats,
/proc/sched_debug,
/proc/scsi,
/sys/firmware
ReadonlyPaths: /proc/bus,
/proc/fs,
/proc/irq,
/proc/sys,
/proc/sysrq-trigger
/var/lib/docker/containers/7997c8bd061e762bfdb105274af3f60e5f2254aaba2172744db1edfccc2b8a41/hostname/var/lib/docker/containers/7997c8bd061e762bfdb105274af3f60e5f2254aaba2172744db1edfccc2b8a41/hosts7997c8bd061e762bfdb105274af3f60e5f2254aaba2172744db1edfccc2b8a41sha256:bf756fb1ae65adf866bd8c456593cd24beb6a0a061dedf42b26a993176745f6b/var/lib/docker/containers/7997c8bd061e762bfdb105274af3f60e5f2254aaba2172744db1edfccc2b8a41/7997c8bd061e762bfdb105274af3f60e5f2254aaba2172744db1edfccc2b8a41-json.log/hello-dockerBridge:
SandboxID: 6d48185534118ce5b3549501c122dd1f67831418c306ef2291cfda6763db6e0e
HairpinMode: false
LinkLocalIPv6Address:
LinkLocalIPv6PrefixLen: 0
Ports: {}
SandboxKey: /var/run/docker/netns/6d4818553411
SecondaryIPAddresses: null
SecondaryIPv6Addresses: null
EndpointID:
Gateway:
GlobalIPv6Address:
GlobalIPv6PrefixLen: 0
IPAddress:
IPPrefixLen: 0
IPv6Gateway:
MacAddress:
Networks: {"bridge": {"IPAMConfig": null, "Links": null, "Aliases": null, "NetworkID": "b5b425aad28e5f4b9c9b118257ce214455d84a7901e5a90d79e3ae4f527f725e", "EndpointID": "", "Gateway": "", "IPAddress": "", "IPPrefixLen": 0, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "", "DriverOpts": null}}
/hellolinux/var/lib/docker/containers/7997c8bd061e762bfdb105274af3f60e5f2254aaba2172744db1edfccc2b8a41/resolv.conf0Status: exited
Running: false
Paused: false
Restarting: false
OOMKilled: false
Dead: false
Pid: 0
ExitCode: 0
Error:
StartedAt: 2021-01-08T16:26:46.401416786Z
FinishedAt: 2021-01-08T16:26:46.413127348Z

docker-container-list#


List containers

Base Command#

docker-container-list

Input#

Argument NameDescriptionRequired
list_allReturn all containers. By default, only running containers are shown. .Optional
limitReturn this number of most recently created containers, including non-running ones. .Optional
sizeReturn the size of container as fields SizeRw and SizeRootFs. .Optional
filtersFilters to process on the container list, encoded as JSON (a map[string][]string). For example, {"status": ["paused"]} will only return paused containers. Available filters: - ancestor=( image-name [: tag ], image id, or image@digest) - before=(container id or container name) - expose=( port [/ proto ]| startport-endport /[ proto ]) - exited= int containers with exit code of int - health=(starting|healthy|unhealthy|none) - id= ID a container's ID - isolation=(default|process|hyperv) (Windows daemon only) - is-task=(true|false) - label=key or label="key=value" of a container label - name= name a container's name - network=(network id or network name) - publish=( port [/ proto ]| startport-endport /[ proto ]) - since=(container id or container name) - status=(created|restarting|running|removing|paused|exited|dead) - volume=(volume name or mount point destination) .Optional

Context Output#

There is no context output for this command.

Command Example#

!docker-container-list

Context Example#

{
"Docker": {
"ContainerSummary": [
{
"Command": "tini -- /docker-entrypoint.sh mongo-express",
"Created": 1609920735,
"HostConfig": {
"NetworkMode": "mongodb_default"
},
"Id": "57d49db83f2ced79c87e5c50d2b407bbb7bc33c3a95a03e142477f3a3b79ded5",
"Image": "mongo-express",
"ImageID": "sha256:05bf9d904cd0953ee1ad647a61abfb0ab1470062f8baa70495b4b068e95a514e",
"Labels": {
"com.docker.compose.config-hash": "0a75befcc34f36ab677c5d8f09d2ee8063e8ad3d",
"com.docker.compose.container-number": "1",
"com.docker.compose.oneoff": "False",
"com.docker.compose.project": "mongodb",
"com.docker.compose.service": "mongo-express",
"com.docker.compose.version": "1.5.0"
},
"Mounts": [],
"Names": [
"/mongodb-express"
],
"NetworkSettings": {
"Networks": {
"mongodb_default": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "2628f2ac3df2f3b5a8059fe3e736d9fe9da4d428c9da9220dad5d2eb100258fa",
"Gateway": "1.0.0.1",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": {},
"IPAddress": "1.0.0.3",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "02:42:ac:1a:00:03",
"NetworkID": "5e04b0a7302ac9ce9c5fa3ba9d71c6bf173a9aaca5b3efc6c79b3bf01260371b"
}
}
},
"Ports": [
{
"IP": "0.0.0.0",
"PrivatePort": 8081,
"PublicPort": 8081,
"Type": "tcp"
}
],
"State": "running",
"Status": "Up 23 minutes"
},
{
"Command": "docker-entrypoint.sh mongod",
"Created": 1609920723,
"HostConfig": {
"NetworkMode": "mongodb_default"
},
"Id": "161f9d908f5bc34a9638a496b492cce47a16cd47268ec61f04e10b1224dbd2a3",
"Image": "mongo",
"ImageID": "sha256:c97feb3412a387d4d3bbd8653b09ef26683263a192e0e8dc6554e65bfb637a86",
"Labels": {
"com.docker.compose.config-hash": "74e20e7feccade15ae2ce2378088081ae5726a05",
"com.docker.compose.container-number": "1",
"com.docker.compose.oneoff": "False",
"com.docker.compose.project": "mongodb",
"com.docker.compose.service": "mongo",
"com.docker.compose.version": "1.5.0"
},
"Mounts": [
{
"Destination": "/data/db",
"Driver": "local",
"Mode": "z",
"Name": "mongodb",
"Propagation": "",
"RW": true,
"Source": "/var/lib/docker/volumes/mongodb/_data",
"Type": "volume"
},
{
"Destination": "/data/configdb",
"Driver": "local",
"Mode": "",
"Name": "88b259421004c4300e96dc6d2ec2685b243dea9f5007bfebf881a7d6ae0a6b55",
"Propagation": "",
"RW": true,
"Source": "",
"Type": "volume"
}
],
"Names": [
"/mongodb"
],
"NetworkSettings": {
"Networks": {
"mongodb_default": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "2f478dd56c3bfa4b0bfb2a6bdfa5a7f95f20960dbc5045238567f4f7c2b5e46d",
"Gateway": "1.0.0.1",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": {},
"IPAddress": "1.0.0.2",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "02:42:ac:1a:00:02",
"NetworkID": "5e04b0a7302ac9ce9c5fa3ba9d71c6bf173a9aaca5b3efc6c79b3bf01260371b"
}
}
},
"Ports": [
{
"IP": "0.0.0.0",
"PrivatePort": 27017,
"PublicPort": 27017,
"Type": "tcp"
}
],
"State": "running",
"Status": "Up 23 minutes"
},
{
"Command": "/entrypoint.sh /venv/bin/gunicorn opentaxii.http:app --workers=2 --log-level=info --log-file=- --timeout=300 --config=python:opentaxii.http --bind=0.0.0.0:9000",
"Created": 1609863181,
"HostConfig": {
"NetworkMode": "bridge"
},
"Id": "04be62e20d33bf299865e26b657ec5516928641558ccff6a899407ab0b6b1d94",
"Image": "eclecticiq/opentaxii:latest",
"ImageID": "sha256:aa50897f28e43c1110328f1b8740a2ad097031e8d2443266e562fe74be1a7a19",
"Labels": {
"maintainer": "EclecticIQ <opentaxii@eclecticiq.com>"
},
"Mounts": [
{
"Destination": "/data",
"Driver": "local",
"Mode": "z",
"Name": "opentaxii-data",
"Propagation": "",
"RW": true,
"Source": "/var/lib/docker/volumes/opentaxii-data/_data",
"Type": "volume"
},
{
"Destination": "/input",
"Driver": "local",
"Mode": "z",
"Name": "opentaxii-input",
"Propagation": "",
"RW": true,
"Source": "/var/lib/docker/volumes/opentaxii-input/_data",
"Type": "volume"
}
],
"Names": [
"/test-taxii"
],
"NetworkSettings": {
"Networks": {
"bridge": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "3fccdab7ca5ad3f11ef72dd8d76044160c0cc66e005643d9584fbcb903500c1b",
"Gateway": "1.0.0.7",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": {},
"IPAddress": "1.0.0.2",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "02:42:ac:11:00:02",
"NetworkID": "bd9761f59994adf640e4728dfdf92856d8292a649e4cf6b102ddbed672445a34"
}
}
},
"Ports": [
{
"IP": "0.0.0.0",
"PrivatePort": 9000,
"PublicPort": 6000,
"Type": "tcp"
}
],
"State": "running",
"Status": "Up 23 minutes"
},
{
"Command": "/entrypoint.sh",
"Created": 1608827060,
"HostConfig": {
"NetworkMode": "openctiv4_default"
},
"Id": "14d3c9c9c306e427b8cd4a2e4d80ddd6ad38684936224f3e36440b6b6f08bc34",
"Image": "opencti/connector-ipinfo:4.0.3",
"ImageID": "sha256:cd608aa8a042cb46adf5aaa3c43ce92a85b3817c5254b8de0e53b49b7a729c6b",
"Labels": {
"com.docker.compose.config-hash": "3a9bd111dfb135ed1a839ad5e164068c78b2b630",
"com.docker.compose.container-number": "1",
"com.docker.compose.oneoff": "False",
"com.docker.compose.project": "openctiv4",
"com.docker.compose.service": "connector-export-file-stix",
"com.docker.compose.version": "1.5.0"
},
"Mounts": [],
"Names": [
"/opencti_connector-ipinfo"
],
"NetworkSettings": {
"Networks": {
"openctiv4_default": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "717ad998186f308ebefb4f0f71c04ae5fbc143e450bed9eba8570d9adc099624",
"Gateway": "1.0.0.5",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": {},
"IPAddress": "1.0.0.5",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "02:42:ac:18:00:08",
"NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86"
}
}
},
"Ports": [],
"State": "running",
"Status": "Up 22 minutes"
},
{
"Command": "/entrypoint.sh",
"Created": 1608564498,
"HostConfig": {
"NetworkMode": "openctiv4_default"
},
"Id": "7ba5c18139e09bd2a34e7be27db70520c6901dad7db901dd073c1f96abfc9034",
"Image": "opencti/connector-import-file-pdf-observables:4.0.3",
"ImageID": "sha256:51afb662d3c993510447e431e3da8495140690cb9c1ca93c7cf19424a63ce223",
"Labels": {
"com.docker.compose.config-hash": "336a368bc6eb7eae69a090a9ac80f9614d02685e",
"com.docker.compose.container-number": "1",
"com.docker.compose.oneoff": "False",
"com.docker.compose.project": "openctiv4",
"com.docker.compose.service": "connector-import-file-pdf-observables",
"com.docker.compose.version": "1.5.0"
},
"Mounts": [],
"Names": [
"/opencti_connector-import-file-pdf-observables"
],
"NetworkSettings": {
"Networks": {
"openctiv4_default": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "e99d6307854d91785af35603157c0a82826a5ebe59b3072924770dd7e66be07c",
"Gateway": "1.0.0.5",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": {},
"IPAddress": "1.0.0.2",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "02:42:ac:18:00:02",
"NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86"
}
}
},
"Ports": [],
"State": "running",
"Status": "Up 22 minutes"
},
{
"Command": "/entrypoint.sh",
"Created": 1608564460,
"HostConfig": {
"NetworkMode": "openctiv4_default"
},
"Id": "2aa24d29411d89e1d3fcd708b0dae10e32a84d53d9164a5998c217e054d31bd9",
"Image": "opencti/connector-import-file-stix:4.0.3",
"ImageID": "sha256:cfd88d87460e5c1e0d7c82ee58258208c80d8acbd9417afe2f7cea10bfef4dd9",
"Labels": {
"com.docker.compose.config-hash": "d39640557a02e44f4983eac94b75e00a8b975e07",
"com.docker.compose.container-number": "1",
"com.docker.compose.oneoff": "False",
"com.docker.compose.project": "openctiv4",
"com.docker.compose.service": "connector-import-file-stix",
"com.docker.compose.version": "1.5.0"
},
"Mounts": [],
"Names": [
"/opencti_connector-import-file-stix"
],
"NetworkSettings": {
"Networks": {
"openctiv4_default": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "254bd9e38c903fc40203b0935a627ff078764e0692e948af6e99088512909f5a",
"Gateway": "1.0.0.5",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": {},
"IPAddress": "1.0.0.5",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "02:42:ac:18:00:07",
"NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86"
}
}
},
"Ports": [],
"State": "running",
"Status": "Up 7 seconds"
},
{
"Command": "/entrypoint.sh",
"Created": 1608564417,
"HostConfig": {
"NetworkMode": "openctiv4_default"
},
"Id": "5f92895691ca7eeb6c8bc3f4914cd6210a3d59a72e8e48890f336d352cbc9753",
"Image": "opencti/connector-export-file-csv:4.0.3",
"ImageID": "sha256:25500204dfbea42059fc77100177de2c5d92cd4219ca6437831bfc26c53b628c",
"Labels": {
"com.docker.compose.config-hash": "64d591ae3f975e1a79738447dd38d1e554486f44",
"com.docker.compose.container-number": "1",
"com.docker.compose.oneoff": "False",
"com.docker.compose.project": "openctiv4",
"com.docker.compose.service": "connector-export-file-csv",
"com.docker.compose.version": "1.5.0"
},
"Mounts": [],
"Names": [
"/opencti_connector-export-file-csv"
],
"NetworkSettings": {
"Networks": {
"openctiv4_default": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "91a3c7767104581ddb04f739c3cc313e7bfe0f6db5ad4c6865970d1e60bf99b7",
"Gateway": "1.0.0.5",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": {},
"IPAddress": "1.0.0.5",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "02:42:ac:18:00:09",
"NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86"
}
}
},
"Ports": [],
"State": "running",
"Status": "Up 22 minutes"
},
{
"Command": "/entrypoint.sh",
"Created": 1608564294,
"HostConfig": {
"NetworkMode": "openctiv4_default"
},
"Id": "65ddee16a51d57e8b57f6b00acd7f9ae5b92152731276d6d4d497c2f979e2b1e",
"Image": "opencti/connector-export-file-stix:4.0.3",
"ImageID": "sha256:42efb539088b86558557e24c10d00810014e5e820f0d7ac8bb8d0fd3981a0bda",
"Labels": {
"com.docker.compose.config-hash": "3a9bd111dfb135ed1a839ad5e164068c78b2b630",
"com.docker.compose.container-number": "1",
"com.docker.compose.oneoff": "False",
"com.docker.compose.project": "openctiv4",
"com.docker.compose.service": "connector-export-file-stix",
"com.docker.compose.version": "1.5.0"
},
"Mounts": [],
"Names": [
"/opencti_connector-export-file-stix"
],
"NetworkSettings": {
"Networks": {
"openctiv4_default": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "8cd31e2f66b6df498962e8cc4df17f741b842546c4fd61ac9a79c2f6805f66bc",
"Gateway": "1.0.0.5",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": {},
"IPAddress": "1.0.0.5",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "02:42:ac:18:00:04",
"NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86"
}
}
},
"Ports": [],
"State": "running",
"Status": "Up 22 minutes"
},
{
"Command": "/entrypoint.sh",
"Created": 1608564112,
"HostConfig": {
"NetworkMode": "openctiv4_default"
},
"Id": "c61e3108d286e07032f8ec44f3e5883bac00838a673972e871c31d970b75d155",
"Image": "opencti/connector-history:4.0.3",
"ImageID": "sha256:0257f00635aca1087fa630362c470f22c4661bc87d4e6e8c54c64f5795dfce1e",
"Labels": {
"com.docker.compose.config-hash": "6ac905cdbdc63d012688d34a06393c135d384c79",
"com.docker.compose.container-number": "1",
"com.docker.compose.oneoff": "False",
"com.docker.compose.project": "openctiv4",
"com.docker.compose.service": "connector-history",
"com.docker.compose.version": "1.5.0"
},
"Mounts": [],
"Names": [
"/opencti_connector-history"
],
"NetworkSettings": {
"Networks": {
"openctiv4_default": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "048b58a95cd8a27e6f640c844e9b5ea7c65c4fdcbdc5dfdc683986daf6813e4a",
"Gateway": "1.0.0.5",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": {},
"IPAddress": "1.0.0.5",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "02:42:ac:18:00:0d",
"NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86"
}
}
},
"Ports": [],
"State": "running",
"Status": "Up 22 minutes"
},
{
"Command": "/entrypoint.sh",
"Created": 1608563957,
"HostConfig": {
"NetworkMode": "openctiv4_default"
},
"Id": "2220832cc2840320c53156993563fce5298d4e0317d71b42851067f02c762423",
"Image": "opencti/connector-alienvault:4.0.3",
"ImageID": "sha256:3e718135d5fb38c0af85c9c00b64160082a407722d929572a190d6092c604e15",
"Labels": {
"com.docker.compose.config-hash": "3a9bd111dfb135ed1a839ad5e164068c78b2b630",
"com.docker.compose.container-number": "1",
"com.docker.compose.oneoff": "False",
"com.docker.compose.project": "openctiv4",
"com.docker.compose.service": "connector-export-file-stix",
"com.docker.compose.version": "1.5.0"
},
"Mounts": [],
"Names": [
"/opencti_connector-alienvault"
],
"NetworkSettings": {
"Networks": {
"openctiv4_default": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "3a8b638639e908f26163f7271bb88eee017a3fc5cb253bf180e8b190ebca5a80",
"Gateway": "1.0.0.5",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": {},
"IPAddress": "1.0.0.5",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "02:42:ac:18:00:0c",
"NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86"
}
}
},
"Ports": [],
"State": "running",
"Status": "Up 22 minutes"
},
{
"Command": "/entrypoint.sh",
"Created": 1608562731,
"HostConfig": {
"NetworkMode": "openctiv4_default"
},
"Id": "cc1743f3d83750f973796d0aaadba7ec5fb67361906666b2a48be0512d82a050",
"Image": "opencti/worker:4.0.3",
"ImageID": "sha256:670872e9f7dbae235172cb2b7c732b0ea05283aeb45fcaa4616673826f9c4473",
"Labels": {
"com.docker.compose.config-hash": "4f611b1efe20fd3b147a1b830afceff276398af1",
"com.docker.compose.container-number": "1",
"com.docker.compose.oneoff": "False",
"com.docker.compose.project": "openctiv4",
"com.docker.compose.service": "worker",
"com.docker.compose.version": "1.5.0"
},
"Mounts": [],
"Names": [
"/opencti_worker_2"
],
"NetworkSettings": {
"Networks": {
"openctiv4_default": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "03f052a4e86e16124c279fe9e593e4686fcc658b57d82b51c031163f2076cfc6",
"Gateway": "1.0.0.5",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": {},
"IPAddress": "1.0.0.5",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "02:42:ac:18:00:0e",
"NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86"
}
}
},
"Ports": [],
"State": "running",
"Status": "Up 22 minutes"
},
{
"Command": "/entrypoint.sh",
"Created": 1608561358,
"HostConfig": {
"NetworkMode": "openctiv4_default"
},
"Id": "118fe891bacfe3328ad64677ac492f0568547740458090594600950613774fcf",
"Image": "opencti/worker:4.0.3",
"ImageID": "sha256:670872e9f7dbae235172cb2b7c732b0ea05283aeb45fcaa4616673826f9c4473",
"Labels": {
"com.docker.compose.config-hash": "4f611b1efe20fd3b147a1b830afceff276398af1",
"com.docker.compose.container-number": "1",
"com.docker.compose.oneoff": "False",
"com.docker.compose.project": "openctiv4",
"com.docker.compose.service": "worker",
"com.docker.compose.version": "1.5.0"
},
"Mounts": [],
"Names": [
"/opencti_worker_1"
],
"NetworkSettings": {
"Networks": {
"openctiv4_default": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "ce7645ab046233a84fc7c2c9ce796a120edfd790280a52fb9df55f2066458141",
"Gateway": "1.0.0.5",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": {},
"IPAddress": "1.0.0.5",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "02:42:ac:18:00:0f",
"NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86"
}
}
},
"Ports": [],
"State": "running",
"Status": "Up 22 minutes"
},
{
"Command": "docker-entrypoint.sh redis-server",
"Created": 1608559382,
"HostConfig": {
"NetworkMode": "openctiv4_default"
},
"Id": "4be1f8dec98809ec2cf360d1d882beb8c819a58111070a04affbc714a071d1a0",
"Image": "redis:6.0.9",
"ImageID": "sha256:ef47f3b6dc11e8f17fb39a6e46ecaf4efd47b3d374e92aeb9f2606896b751251",
"Labels": {
"com.docker.compose.config-hash": "daf5e1ad7b16619b8c479df88301daf432c5a564",
"com.docker.compose.container-number": "1",
"com.docker.compose.oneoff": "False",
"com.docker.compose.project": "openctiv4",
"com.docker.compose.service": "redis",
"com.docker.compose.version": "1.5.0"
},
"Mounts": [
{
"Destination": "/data",
"Driver": "local",
"Mode": "z",
"Name": "redisdata",
"Propagation": "",
"RW": true,
"Source": "/var/lib/docker/volumes/redisdata/_data",
"Type": "volume"
}
],
"Names": [
"/redis"
],
"NetworkSettings": {
"Networks": {
"openctiv4_default": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "996d21e0ac5c57239c1622bba9c9a5d303a82cec1c15146a94c84766cd460966",
"Gateway": "1.0.0.5",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": {},
"IPAddress": "1.0.0.3",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "02:42:ac:18:00:03",
"NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86"
}
}
},
"Ports": [
{
"IP": "0.0.0.0",
"PrivatePort": 6379,
"PublicPort": 6379,
"Type": "tcp"
}
],
"State": "running",
"Status": "Up 23 minutes"
},
{
"Command": "/tini -- /usr/local/bin/docker-entrypoint.sh eswrapper",
"Created": 1608559270,
"HostConfig": {
"NetworkMode": "openctiv4_default"
},
"Id": "5c3b991454ad1daa7d2f287cc0450d69f0c1e0a7778f8f55199b5201da3b5390",
"Image": "docker.elastic.co/elasticsearch/elasticsearch:7.10.1",
"ImageID": "sha256:558380375f1a36c20e67c3a0b7bf715c659d75520d0e688b066d5e708918d716",
"Labels": {
"com.docker.compose.config-hash": "6367ce3fdc8ac903d07574f97c9dc4a7208f3aef",
"com.docker.compose.container-number": "1",
"com.docker.compose.oneoff": "False",
"com.docker.compose.project": "openctiv4",
"com.docker.compose.service": "elasticsearch",
"com.docker.compose.version": "1.5.0",
"org.label-schema.build-date": "2020-12-05T01:00:33.671820Z",
"org.label-schema.license": "Elastic-License",
"org.label-schema.name": "Elasticsearch",
"org.label-schema.schema-version": "1.0",
"org.label-schema.url": "https://www.elastic.co/products/elasticsearch",
"org.label-schema.usage": "https://www.elastic.co/guide/en/elasticsearch/reference/index.html",
"org.label-schema.vcs-ref": "1c34507e66d7db1211f66f3513706fdf548736aa",
"org.label-schema.vcs-url": "https://github.com/elastic/elasticsearch",
"org.label-schema.vendor": "Elastic",
"org.label-schema.version": "7.10.1",
"org.opencontainers.image.created": "2020-12-05T01:00:33.671820Z",
"org.opencontainers.image.documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/index.html",
"org.opencontainers.image.licenses": "Elastic-License",
"org.opencontainers.image.revision": "1c34507e66d7db1211f66f3513706fdf548736aa",
"org.opencontainers.image.source": "https://github.com/elastic/elasticsearch",
"org.opencontainers.image.title": "Elasticsearch",
"org.opencontainers.image.url": "https://www.elastic.co/products/elasticsearch",
"org.opencontainers.image.vendor": "Elastic",
"org.opencontainers.image.version": "7.10.1"
},
"Mounts": [
{
"Destination": "/usr/share/elasticsearch/data",
"Driver": "local",
"Mode": "z",
"Name": "esdata",
"Propagation": "",
"RW": true,
"Source": "/var/lib/docker/volumes/esdata/_data",
"Type": "volume"
}
],
"Names": [
"/elasticsearch"
],
"NetworkSettings": {
"Networks": {
"openctiv4_default": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "64904da59143266418038a1f64c1f7573d0a31f79ed0a32998ce94172ba49c88",
"Gateway": "1.0.0.5",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": {},
"IPAddress": "1.0.0.5",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "02:42:ac:18:00:06",
"NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86"
}
}
},
"Ports": [
{
"IP": "0.0.0.0",
"PrivatePort": 9200,
"PublicPort": 9200,
"Type": "tcp"
},
{
"IP": "0.0.0.0",
"PrivatePort": 9300,
"PublicPort": 9300,
"Type": "tcp"
}
],
"State": "running",
"Status": "Up 23 minutes"
},
{
"Command": "docker-entrypoint.sh rabbitmq-server",
"Created": 1608559125,
"HostConfig": {
"NetworkMode": "openctiv4_default"
},
"Id": "93b8c8f3e5c5b959b5382b20ec3f441d1b960124419e809d86f0a34cee59d7c8",
"Image": "rabbitmq:3.8-management",
"ImageID": "sha256:1ecd87fb78edc5feada026b0f926bcf7458eb9c80db8100618e1df725645540e",
"Labels": {
"com.docker.compose.config-hash": "d18573c6a89abeacddfab591aca6e68b2921b90a",
"com.docker.compose.container-number": "1",
"com.docker.compose.oneoff": "False",
"com.docker.compose.project": "openctiv4",
"com.docker.compose.service": "rabbitmq",
"com.docker.compose.version": "1.5.0"
},
"Mounts": [
{
"Destination": "/var/lib/rabbitmq",
"Driver": "local",
"Mode": "z",
"Name": "amqpdata",
"Propagation": "",
"RW": true,
"Source": "/var/lib/docker/volumes/amqpdata/_data",
"Type": "volume"
}
],
"Names": [
"/rabbitmq"
],
"NetworkSettings": {
"Networks": {
"openctiv4_default": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "2eb072c87b19c95fac0f6121af754ea0cec052a27cb4f2aee8755c2aec92dfce",
"Gateway": "1.0.0.5",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": {},
"IPAddress": "1.0.0.1",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "02:42:ac:18:00:0a",
"NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86"
}
}
},
"Ports": [
{
"IP": "0.0.0.0",
"PrivatePort": 15672,
"PublicPort": 15672,
"Type": "tcp"
},
{
"PrivatePort": 15691,
"Type": "tcp"
},
{
"PrivatePort": 15692,
"Type": "tcp"
},
{
"PrivatePort": 25672,
"Type": "tcp"
},
{
"PrivatePort": 4369,
"Type": "tcp"
},
{
"PrivatePort": 5671,
"Type": "tcp"
},
{
"PrivatePort": 5672,
"Type": "tcp"
},
{
"PrivatePort": 15671,
"Type": "tcp"
}
],
"State": "running",
"Status": "Up 23 minutes"
},
{
"Command": "/entrypoint.sh",
"Created": 1608557349,
"HostConfig": {
"NetworkMode": "openctiv4_default"
},
"Id": "0b7479a2f6abb93887cfb881dc8e4464e48df384887cb483c99a134cf894644b",
"Image": "opencti/platform:4.0.3",
"ImageID": "sha256:b03e4ab4fe4739d8ef6cd6a6639ccea8e09eaee8f6fb8842be9225c3719e27cd",
"Labels": {
"com.docker.compose.config-hash": "22687afb96da8b20f51629f9868dfd237ad601a6",
"com.docker.compose.container-number": "1",
"com.docker.compose.oneoff": "False",
"com.docker.compose.project": "openctiv4",
"com.docker.compose.service": "opencti",
"com.docker.compose.version": "1.5.0"
},
"Mounts": [],
"Names": [
"/opencti"
],
"NetworkSettings": {
"Networks": {
"openctiv4_default": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "588234b49254b09744635401d2c95f092f7884bac7ae85e3e23e6cccab00abb7",
"Gateway": "1.0.0.5",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": {},
"IPAddress": "1.0.0.1",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "02:42:ac:18:00:0b",
"NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86"
}
}
},
"Ports": [
{
"IP": "0.0.0.0",
"PrivatePort": 8080,
"PublicPort": 8080,
"Type": "tcp"
}
],
"State": "running",
"Status": "Up 23 minutes"
},
{
"Command": "/usr/bin/docker-entrypoint.sh server /data",
"Created": 1608557040,
"HostConfig": {
"NetworkMode": "openctiv4_default"
},
"Id": "cddbc48191628fde8991adfed5d0e4c2704f4e09b9b79d96549be8baf608984d",
"Image": "minio/minio:RELEASE.2020-12-12T08-39-07Z",
"ImageID": "sha256:f1a30c1dd760a7927d12a559c55fcf6ccb7efbbe79295ecc9394b7e4fe21d216",
"Labels": {
"architecture": "x86_64",
"build-date": "2020-10-31T05:07:05.471303",
"com.docker.compose.config-hash": "da8a89d63690ae08df58294ad3685f61c201125e",
"com.docker.compose.container-number": "1",
"com.docker.compose.oneoff": "False",
"com.docker.compose.project": "openctiv4",
"com.docker.compose.service": "minio",
"com.docker.compose.version": "1.5.0",
"com.redhat.build-host": "cpt-1002.osbs.prod.upshift.rdu2.redhat.com",
"com.redhat.component": "ubi8-minimal-container",
"com.redhat.license_terms": "https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI",
"description": "MinIO object storage is fundamentally different. Designed for performance and the S3 API, it is 100% open-source. MinIO is ideal for large, private cloud environments with stringent security requirements and delivers mission-critical availability across a diverse range of workloads.",
"distribution-scope": "public",
"io.k8s.description": "The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly.",
"io.k8s.display-name": "Red Hat Universal Base Image 8 Minimal",
"io.openshift.expose-services": "",
"io.openshift.tags": "minimal rhel8",
"maintainer": "MinIO Inc <dev@min.io>",
"name": "MinIO",
"release": "RELEASE.2020-11-25T22-36-25Z",
"summary": "MinIO is a High Performance Object Storage, API compatible with Amazon S3 cloud storage service.",
"url": "https://access.redhat.com/containers/#/registry.access.redhat.com/ubi8-minimal/images/8.3-201",
"vcs-ref": "f53dab37c7541dd0080f410727c5886e85c09ee7",
"vcs-type": "git",
"vendor": "MinIO Inc <dev@min.io>",
"version": "RELEASE.2020-11-25T22-36-25Z"
},
"Mounts": [
{
"Destination": "/data",
"Driver": "local",
"Mode": "z",
"Name": "s3data",
"Propagation": "",
"RW": true,
"Source": "/var/lib/docker/volumes/s3data/_data",
"Type": "volume"
}
],
"Names": [
"/minio"
],
"NetworkSettings": {
"Networks": {
"openctiv4_default": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "b3d4562edf6ea434a58ac398ca2c179cb95740af5e4c3bf970499544413397a4",
"Gateway": "1.0.0.5",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": {},
"IPAddress": "1.0.0.5",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "02:42:ac:18:00:05",
"NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86"
}
}
},
"Ports": [
{
"IP": "0.0.0.0",
"PrivatePort": 9000,
"PublicPort": 5000,
"Type": "tcp"
}
],
"State": "running",
"Status": "Up 23 minutes"
},
{
"Command": "/portainer",
"Created": 1608307988,
"HostConfig": {
"NetworkMode": "default"
},
"Id": "63de66e6e323ae7e189aeeba070adc184b386456ffe0dde9e3a88b8da0660d54",
"Image": "portainer/portainer-ce",
"ImageID": "sha256:a0a227bf03ddc8b88bbb74b1b84a8a7220c8fa95b122cbde2a7444f32dc30659",
"Labels": {},
"Mounts": [
{
"Destination": "/data",
"Driver": "local",
"Mode": "z",
"Name": "portainer_data",
"Propagation": "",
"RW": true,
"Source": "/var/lib/docker/volumes/portainer_data/_data",
"Type": "volume"
},
{
"Destination": "/var/run/docker.sock",
"Mode": "",
"Propagation": "rprivate",
"RW": true,
"Source": "/var/run/docker.sock",
"Type": "bind"
}
],
"Names": [
"/portainer"
],
"NetworkSettings": {
"Networks": {
"bridge": {
"Aliases": null,
"DriverOpts": null,
"EndpointID": "338cd95d726c3fde9674c4e86a9754ad5041ed9f3ea67b533224d8d27f2203f8",
"Gateway": "1.0.0.7",
"GlobalIPv6Address": "",
"GlobalIPv6PrefixLen": 0,
"IPAMConfig": null,
"IPAddress": "1.0.0.3",
"IPPrefixLen": 16,
"IPv6Gateway": "",
"Links": null,
"MacAddress": "02:42:ac:11:00:03",
"NetworkID": "bd9761f59994adf640e4728dfdf92856d8292a649e4cf6b102ddbed672445a34"
}
}
},
"Ports": [
{
"IP": "0.0.0.0",
"PrivatePort": 8000,
"PublicPort": 8000,
"Type": "tcp"
},
{
"IP": "0.0.0.0",
"PrivatePort": 9000,
"PublicPort": 9000,
"Type": "tcp"
}
],
"State": "running",
"Status": "Up 23 minutes"
}
]
}
}

Human Readable Output#

Results#

CommandCreatedHostConfigIdImageImageIDLabelsMountsNamesNetworkSettingsPortsStateStatus
tini -- /docker-entrypoint.sh mongo-express1609920735NetworkMode: mongodb_default57d49db83f2ced79c87e5c50d2b407bbb7bc33c3a95a03e142477f3a3b79ded5mongo-expresssha256:05bf9d904cd0953ee1ad647a61abfb0ab1470062f8baa70495b4b068e95a514ecom.docker.compose.config-hash: 0a75befcc34f36ab677c5d8f09d2ee8063e8ad3d
com.docker.compose.container-number: 1
com.docker.compose.oneoff: False
com.docker.compose.project: mongodb
com.docker.compose.service: mongo-express
com.docker.compose.version: 1.5.0
/mongodb-expressNetworks: {"mongodb_default": {"IPAMConfig": {}, "Links": null, "Aliases": null, "NetworkID": "5e04b0a7302ac9ce9c5fa3ba9d71c6bf173a9aaca5b3efc6c79b3bf01260371b", "EndpointID": "2628f2ac3df2f3b5a8059fe3e736d9fe9da4d428c9da9220dad5d2eb100258fa", "Gateway": "1.0.0.1", "IPAddress": "1.0.0.3", "IPPrefixLen": 16, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "02:42:ac:1a:00:03", "DriverOpts": null}}{'IP': '0.0.0.0', 'PrivatePort': 8081, 'PublicPort': 8081, 'Type': 'tcp'}runningUp 23 minutes
docker-entrypoint.sh mongod1609920723NetworkMode: mongodb_default161f9d908f5bc34a9638a496b492cce47a16cd47268ec61f04e10b1224dbd2a3mongosha256:c97feb3412a387d4d3bbd8653b09ef26683263a192e0e8dc6554e65bfb637a86com.docker.compose.config-hash: 74e20e7feccade15ae2ce2378088081ae5726a05
com.docker.compose.container-number: 1
com.docker.compose.oneoff: False
com.docker.compose.project: mongodb
com.docker.compose.service: mongo
com.docker.compose.version: 1.5.0
{'Type': 'volume', 'Name': 'mongodb', 'Source': '/var/lib/docker/volumes/mongodb/_data', 'Destination': '/data/db', 'Driver': 'local', 'Mode': 'z', 'RW': True, 'Propagation': ''},
{'Type': 'volume', 'Name': '88b259421004c4300e96dc6d2ec2685b243dea9f5007bfebf881a7d6ae0a6b55', 'Source': '', 'Destination': '/data/configdb', 'Driver': 'local', 'Mode': '', 'RW': True, 'Propagation': ''}
/mongodbNetworks: {"mongodb_default": {"IPAMConfig": {}, "Links": null, "Aliases": null, "NetworkID": "5e04b0a7302ac9ce9c5fa3ba9d71c6bf173a9aaca5b3efc6c79b3bf01260371b", "EndpointID": "2f478dd56c3bfa4b0bfb2a6bdfa5a7f95f20960dbc5045238567f4f7c2b5e46d", "Gateway": "1.0.0.1", "IPAddress": "1.0.0.2", "IPPrefixLen": 16, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "02:42:ac:1a:00:02", "DriverOpts": null}}{'IP': '0.0.0.0', 'PrivatePort': 27017, 'PublicPort': 27017, 'Type': 'tcp'}runningUp 23 minutes
/entrypoint.sh /venv/bin/gunicorn opentaxii.http:app --workers=2 --log-level=info --log-file=- --timeout=300 --config=python:opentaxii.http --bind=0.0.0.0:90001609863181NetworkMode: bridge04be62e20d33bf299865e26b657ec5516928641558ccff6a899407ab0b6b1d94eclecticiq/opentaxii:latestsha256:aa50897f28e43c1110328f1b8740a2ad097031e8d2443266e562fe74be1a7a19maintainer: EclecticIQ opentaxii@eclecticiq.com{'Type': 'volume', 'Name': 'opentaxii-data', 'Source': '/var/lib/docker/volumes/opentaxii-data/_data', 'Destination': '/data', 'Driver': 'local', 'Mode': 'z', 'RW': True, 'Propagation': ''},
{'Type': 'volume', 'Name': 'opentaxii-input', 'Source': '/var/lib/docker/volumes/opentaxii-input/_data', 'Destination': '/input', 'Driver': 'local', 'Mode': 'z', 'RW': True, 'Propagation': ''}
/test-taxiiNetworks: {"bridge": {"IPAMConfig": {}, "Links": null, "Aliases": null, "NetworkID": "bd9761f59994adf640e4728dfdf92856d8292a649e4cf6b102ddbed672445a34", "EndpointID": "3fccdab7ca5ad3f11ef72dd8d76044160c0cc66e005643d9584fbcb903500c1b", "Gateway": "1.0.0.7", "IPAddress": "1.0.0.2", "IPPrefixLen": 16, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "02:42:ac:11:00:02", "DriverOpts": null}}{'IP': '0.0.0.0', 'PrivatePort': 9000, 'PublicPort': 6000, 'Type': 'tcp'}runningUp 23 minutes
/entrypoint.sh1608827060NetworkMode: openctiv4_default14d3c9c9c306e427b8cd4a2e4d80ddd6ad38684936224f3e36440b6b6f08bc34opencti/connector-ipinfo:4.0.3sha256:cd608aa8a042cb46adf5aaa3c43ce92a85b3817c5254b8de0e53b49b7a729c6bcom.docker.compose.config-hash: 3a9bd111dfb135ed1a839ad5e164068c78b2b630
com.docker.compose.container-number: 1
com.docker.compose.oneoff: False
com.docker.compose.project: openctiv4
com.docker.compose.service: connector-export-file-stix
com.docker.compose.version: 1.5.0
/opencti_connector-ipinfoNetworks: {"openctiv4_default": {"IPAMConfig": {}, "Links": null, "Aliases": null, "NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86", "EndpointID": "717ad998186f308ebefb4f0f71c04ae5fbc143e450bed9eba8570d9adc099624", "Gateway": "1.0.0.5", "IPAddress": "1.0.0.5", "IPPrefixLen": 16, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "02:42:ac:18:00:08", "DriverOpts": null}}runningUp 22 minutes
/entrypoint.sh1608564498NetworkMode: openctiv4_default7ba5c18139e09bd2a34e7be27db70520c6901dad7db901dd073c1f96abfc9034opencti/connector-import-file-pdf-observables:4.0.3sha256:51afb662d3c993510447e431e3da8495140690cb9c1ca93c7cf19424a63ce223com.docker.compose.config-hash: 336a368bc6eb7eae69a090a9ac80f9614d02685e
com.docker.compose.container-number: 1
com.docker.compose.oneoff: False
com.docker.compose.project: openctiv4
com.docker.compose.service: connector-import-file-pdf-observables
com.docker.compose.version: 1.5.0
/opencti_connector-import-file-pdf-observablesNetworks: {"openctiv4_default": {"IPAMConfig": {}, "Links": null, "Aliases": null, "NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86", "EndpointID": "e99d6307854d91785af35603157c0a82826a5ebe59b3072924770dd7e66be07c", "Gateway": "1.0.0.5", "IPAddress": "1.0.0.2", "IPPrefixLen": 16, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "02:42:ac:18:00:02", "DriverOpts": null}}runningUp 22 minutes
/entrypoint.sh1608564460NetworkMode: openctiv4_default2aa24d29411d89e1d3fcd708b0dae10e32a84d53d9164a5998c217e054d31bd9opencti/connector-import-file-stix:4.0.3sha256:cfd88d87460e5c1e0d7c82ee58258208c80d8acbd9417afe2f7cea10bfef4dd9com.docker.compose.config-hash: d39640557a02e44f4983eac94b75e00a8b975e07
com.docker.compose.container-number: 1
com.docker.compose.oneoff: False
com.docker.compose.project: openctiv4
com.docker.compose.service: connector-import-file-stix
com.docker.compose.version: 1.5.0
/opencti_connector-import-file-stixNetworks: {"openctiv4_default": {"IPAMConfig": {}, "Links": null, "Aliases": null, "NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86", "EndpointID": "254bd9e38c903fc40203b0935a627ff078764e0692e948af6e99088512909f5a", "Gateway": "1.0.0.5", "IPAddress": "1.0.0.5", "IPPrefixLen": 16, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "02:42:ac:18:00:07", "DriverOpts": null}}runningUp 7 seconds
/entrypoint.sh1608564417NetworkMode: openctiv4_default5f92895691ca7eeb6c8bc3f4914cd6210a3d59a72e8e48890f336d352cbc9753opencti/connector-export-file-csv:4.0.3sha256:25500204dfbea42059fc77100177de2c5d92cd4219ca6437831bfc26c53b628ccom.docker.compose.config-hash: 64d591ae3f975e1a79738447dd38d1e554486f44
com.docker.compose.container-number: 1
com.docker.compose.oneoff: False
com.docker.compose.project: openctiv4
com.docker.compose.service: connector-export-file-csv
com.docker.compose.version: 1.5.0
/opencti_connector-export-file-csvNetworks: {"openctiv4_default": {"IPAMConfig": {}, "Links": null, "Aliases": null, "NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86", "EndpointID": "91a3c7767104581ddb04f739c3cc313e7bfe0f6db5ad4c6865970d1e60bf99b7", "Gateway": "1.0.0.5", "IPAddress": "1.0.0.5", "IPPrefixLen": 16, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "02:42:ac:18:00:09", "DriverOpts": null}}runningUp 22 minutes
/entrypoint.sh1608564294NetworkMode: openctiv4_default65ddee16a51d57e8b57f6b00acd7f9ae5b92152731276d6d4d497c2f979e2b1eopencti/connector-export-file-stix:4.0.3sha256:42efb539088b86558557e24c10d00810014e5e820f0d7ac8bb8d0fd3981a0bdacom.docker.compose.config-hash: 3a9bd111dfb135ed1a839ad5e164068c78b2b630
com.docker.compose.container-number: 1
com.docker.compose.oneoff: False
com.docker.compose.project: openctiv4
com.docker.compose.service: connector-export-file-stix
com.docker.compose.version: 1.5.0
/opencti_connector-export-file-stixNetworks: {"openctiv4_default": {"IPAMConfig": {}, "Links": null, "Aliases": null, "NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86", "EndpointID": "8cd31e2f66b6df498962e8cc4df17f741b842546c4fd61ac9a79c2f6805f66bc", "Gateway": "1.0.0.5", "IPAddress": "1.0.0.5", "IPPrefixLen": 16, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "02:42:ac:18:00:04", "DriverOpts": null}}runningUp 22 minutes
/entrypoint.sh1608564112NetworkMode: openctiv4_defaultc61e3108d286e07032f8ec44f3e5883bac00838a673972e871c31d970b75d155opencti/connector-history:4.0.3sha256:0257f00635aca1087fa630362c470f22c4661bc87d4e6e8c54c64f5795dfce1ecom.docker.compose.config-hash: 6ac905cdbdc63d012688d34a06393c135d384c79
com.docker.compose.container-number: 1
com.docker.compose.oneoff: False
com.docker.compose.project: openctiv4
com.docker.compose.service: connector-history
com.docker.compose.version: 1.5.0
/opencti_connector-historyNetworks: {"openctiv4_default": {"IPAMConfig": {}, "Links": null, "Aliases": null, "NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86", "EndpointID": "048b58a95cd8a27e6f640c844e9b5ea7c65c4fdcbdc5dfdc683986daf6813e4a", "Gateway": "1.0.0.5", "IPAddress": "1.0.0.5", "IPPrefixLen": 16, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "02:42:ac:18:00:0d", "DriverOpts": null}}runningUp 22 minutes
/entrypoint.sh1608563957NetworkMode: openctiv4_default2220832cc2840320c53156993563fce5298d4e0317d71b42851067f02c762423opencti/connector-alienvault:4.0.3sha256:3e718135d5fb38c0af85c9c00b64160082a407722d929572a190d6092c604e15com.docker.compose.config-hash: 3a9bd111dfb135ed1a839ad5e164068c78b2b630
com.docker.compose.container-number: 1
com.docker.compose.oneoff: False
com.docker.compose.project: openctiv4
com.docker.compose.service: connector-export-file-stix
com.docker.compose.version: 1.5.0
/opencti_connector-alienvaultNetworks: {"openctiv4_default": {"IPAMConfig": {}, "Links": null, "Aliases": null, "NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86", "EndpointID": "3a8b638639e908f26163f7271bb88eee017a3fc5cb253bf180e8b190ebca5a80", "Gateway": "1.0.0.5", "IPAddress": "1.0.0.5", "IPPrefixLen": 16, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "02:42:ac:18:00:0c", "DriverOpts": null}}runningUp 22 minutes
/entrypoint.sh1608562731NetworkMode: openctiv4_defaultcc1743f3d83750f973796d0aaadba7ec5fb67361906666b2a48be0512d82a050opencti/worker:4.0.3sha256:670872e9f7dbae235172cb2b7c732b0ea05283aeb45fcaa4616673826f9c4473com.docker.compose.config-hash: 4f611b1efe20fd3b147a1b830afceff276398af1
com.docker.compose.container-number: 1
com.docker.compose.oneoff: False
com.docker.compose.project: openctiv4
com.docker.compose.service: worker
com.docker.compose.version: 1.5.0
/opencti_worker_2Networks: {"openctiv4_default": {"IPAMConfig": {}, "Links": null, "Aliases": null, "NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86", "EndpointID": "03f052a4e86e16124c279fe9e593e4686fcc658b57d82b51c031163f2076cfc6", "Gateway": "1.0.0.5", "IPAddress": "1.0.0.5", "IPPrefixLen": 16, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "02:42:ac:18:00:0e", "DriverOpts": null}}runningUp 22 minutes
/entrypoint.sh1608561358NetworkMode: openctiv4_default118fe891bacfe3328ad64677ac492f0568547740458090594600950613774fcfopencti/worker:4.0.3sha256:670872e9f7dbae235172cb2b7c732b0ea05283aeb45fcaa4616673826f9c4473com.docker.compose.config-hash: 4f611b1efe20fd3b147a1b830afceff276398af1
com.docker.compose.container-number: 1
com.docker.compose.oneoff: False
com.docker.compose.project: openctiv4
com.docker.compose.service: worker
com.docker.compose.version: 1.5.0
/opencti_worker_1Networks: {"openctiv4_default": {"IPAMConfig": {}, "Links": null, "Aliases": null, "NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86", "EndpointID": "ce7645ab046233a84fc7c2c9ce796a120edfd790280a52fb9df55f2066458141", "Gateway": "1.0.0.5", "IPAddress": "1.0.0.5", "IPPrefixLen": 16, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "02:42:ac:18:00:0f", "DriverOpts": null}}runningUp 22 minutes
docker-entrypoint.sh redis-server1608559382NetworkMode: openctiv4_default4be1f8dec98809ec2cf360d1d882beb8c819a58111070a04affbc714a071d1a0redis:6.0.9sha256:ef47f3b6dc11e8f17fb39a6e46ecaf4efd47b3d374e92aeb9f2606896b751251com.docker.compose.config-hash: daf5e1ad7b16619b8c479df88301daf432c5a564
com.docker.compose.container-number: 1
com.docker.compose.oneoff: False
com.docker.compose.project: openctiv4
com.docker.compose.service: redis
com.docker.compose.version: 1.5.0
{'Type': 'volume', 'Name': 'redisdata', 'Source': '/var/lib/docker/volumes/redisdata/_data', 'Destination': '/data', 'Driver': 'local', 'Mode': 'z', 'RW': True, 'Propagation': ''}/redisNetworks: {"openctiv4_default": {"IPAMConfig": {}, "Links": null, "Aliases": null, "NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86", "EndpointID": "996d21e0ac5c57239c1622bba9c9a5d303a82cec1c15146a94c84766cd460966", "Gateway": "1.0.0.5", "IPAddress": "1.0.0.3", "IPPrefixLen": 16, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "02:42:ac:18:00:03", "DriverOpts": null}}{'IP': '0.0.0.0', 'PrivatePort': 6379, 'PublicPort': 6379, 'Type': 'tcp'}runningUp 23 minutes
/tini -- /usr/local/bin/docker-entrypoint.sh eswrapper1608559270NetworkMode: openctiv4_default5c3b991454ad1daa7d2f287cc0450d69f0c1e0a7778f8f55199b5201da3b5390docker.elastic.co/elasticsearch/elasticsearch:7.10.1sha256:558380375f1a36c20e67c3a0b7bf715c659d75520d0e688b066d5e708918d716com.docker.compose.config-hash: 6367ce3fdc8ac903d07574f97c9dc4a7208f3aef
com.docker.compose.container-number: 1
com.docker.compose.oneoff: False
com.docker.compose.project: openctiv4
com.docker.compose.service: elasticsearch
com.docker.compose.version: 1.5.0
org.label-schema.build-date: 2020-12-05T01:00:33.671820Z
org.label-schema.license: Elastic-License
org.label-schema.name: Elasticsearch
org.label-schema.schema-version: 1.0
org.label-schema.url: https://www.elastic.co/products/elasticsearch
org.label-schema.usage: https://www.elastic.co/guide/en/elasticsearch/reference/index.html
org.label-schema.vcs-ref: 1c34507e66d7db1211f66f3513706fdf548736aa
org.label-schema.vcs-url: https://github.com/elastic/elasticsearch
org.label-schema.vendor: Elastic
org.label-schema.version: 7.10.1
org.opencontainers.image.created: 2020-12-05T01:00:33.671820Z
org.opencontainers.image.documentation: https://www.elastic.co/guide/en/elasticsearch/reference/index.html
org.opencontainers.image.licenses: Elastic-License
org.opencontainers.image.revision: 1c34507e66d7db1211f66f3513706fdf548736aa
org.opencontainers.image.source: https://github.com/elastic/elasticsearch
org.opencontainers.image.title: Elasticsearch
org.opencontainers.image.url: https://www.elastic.co/products/elasticsearch
org.opencontainers.image.vendor: Elastic
org.opencontainers.image.version: 7.10.1
{'Type': 'volume', 'Name': 'esdata', 'Source': '/var/lib/docker/volumes/esdata/_data', 'Destination': '/usr/share/elasticsearch/data', 'Driver': 'local', 'Mode': 'z', 'RW': True, 'Propagation': ''}/elasticsearchNetworks: {"openctiv4_default": {"IPAMConfig": {}, "Links": null, "Aliases": null, "NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86", "EndpointID": "64904da59143266418038a1f64c1f7573d0a31f79ed0a32998ce94172ba49c88", "Gateway": "1.0.0.5", "IPAddress": "1.0.0.5", "IPPrefixLen": 16, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "02:42:ac:18:00:06", "DriverOpts": null}}{'IP': '0.0.0.0', 'PrivatePort': 9200, 'PublicPort': 9200, 'Type': 'tcp'},
{'IP': '0.0.0.0', 'PrivatePort': 9300, 'PublicPort': 9300, 'Type': 'tcp'}
runningUp 23 minutes
docker-entrypoint.sh rabbitmq-server1608559125NetworkMode: openctiv4_default93b8c8f3e5c5b959b5382b20ec3f441d1b960124419e809d86f0a34cee59d7c8rabbitmq:3.8-managementsha256:1ecd87fb78edc5feada026b0f926bcf7458eb9c80db8100618e1df725645540ecom.docker.compose.config-hash: d18573c6a89abeacddfab591aca6e68b2921b90a
com.docker.compose.container-number: 1
com.docker.compose.oneoff: False
com.docker.compose.project: openctiv4
com.docker.compose.service: rabbitmq
com.docker.compose.version: 1.5.0
{'Type': 'volume', 'Name': 'amqpdata', 'Source': '/var/lib/docker/volumes/amqpdata/_data', 'Destination': '/var/lib/rabbitmq', 'Driver': 'local', 'Mode': 'z', 'RW': True, 'Propagation': ''}/rabbitmqNetworks: {"openctiv4_default": {"IPAMConfig": {}, "Links": null, "Aliases": null, "NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86", "EndpointID": "2eb072c87b19c95fac0f6121af754ea0cec052a27cb4f2aee8755c2aec92dfce", "Gateway": "1.0.0.5", "IPAddress": "1.0.0.1", "IPPrefixLen": 16, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "02:42:ac:18:00:0a", "DriverOpts": null}}{'IP': '0.0.0.0', 'PrivatePort': 15672, 'PublicPort': 15672, 'Type': 'tcp'},
{'PrivatePort': 15691, 'Type': 'tcp'},
{'PrivatePort': 15692, 'Type': 'tcp'},
{'PrivatePort': 25672, 'Type': 'tcp'},
{'PrivatePort': 4369, 'Type': 'tcp'},
{'PrivatePort': 5671, 'Type': 'tcp'},
{'PrivatePort': 5672, 'Type': 'tcp'},
{'PrivatePort': 15671, 'Type': 'tcp'}
runningUp 23 minutes
/entrypoint.sh1608557349NetworkMode: openctiv4_default0b7479a2f6abb93887cfb881dc8e4464e48df384887cb483c99a134cf894644bopencti/platform:4.0.3sha256:b03e4ab4fe4739d8ef6cd6a6639ccea8e09eaee8f6fb8842be9225c3719e27cdcom.docker.compose.config-hash: 22687afb96da8b20f51629f9868dfd237ad601a6
com.docker.compose.container-number: 1
com.docker.compose.oneoff: False
com.docker.compose.project: openctiv4
com.docker.compose.service: opencti
com.docker.compose.version: 1.5.0
/openctiNetworks: {"openctiv4_default": {"IPAMConfig": {}, "Links": null, "Aliases": null, "NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86", "EndpointID": "588234b49254b09744635401d2c95f092f7884bac7ae85e3e23e6cccab00abb7", "Gateway": "1.0.0.5", "IPAddress": "1.0.0.1", "IPPrefixLen": 16, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "02:42:ac:18:00:0b", "DriverOpts": null}}{'IP': '0.0.0.0', 'PrivatePort': 8080, 'PublicPort': 8080, 'Type': 'tcp'}runningUp 23 minutes
/usr/bin/docker-entrypoint.sh server /data1608557040NetworkMode: openctiv4_defaultcddbc48191628fde8991adfed5d0e4c2704f4e09b9b79d96549be8baf608984dminio/minio:RELEASE.2020-12-12T08-39-07Zsha256:f1a30c1dd760a7927d12a559c55fcf6ccb7efbbe79295ecc9394b7e4fe21d216architecture: x86_64
build-date: 2020-10-31T05:07:05.471303
com.docker.compose.config-hash: da8a89d63690ae08df58294ad3685f61c201125e
com.docker.compose.container-number: 1
com.docker.compose.oneoff: False
com.docker.compose.project: openctiv4
com.docker.compose.service: minio
com.docker.compose.version: 1.5.0
com.redhat.build-host: cpt-1002.osbs.prod.upshift.rdu2.redhat.com
com.redhat.component: ubi8-minimal-container
com.redhat.license_terms: https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI
description: MinIO object storage is fundamentally different. Designed for performance and the S3 API, it is 100% open-source. MinIO is ideal for large, private cloud environments with stringent security requirements and delivers mission-critical availability across a diverse range of workloads.
distribution-scope: public
io.k8s.description: The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly.
io.k8s.display-name: Red Hat Universal Base Image 8 Minimal
io.openshift.expose-services:
io.openshift.tags: minimal rhel8
maintainer: MinIO Inc dev@min.io
name: MinIO
release: RELEASE.2020-11-25T22-36-25Z
summary: MinIO is a High Performance Object Storage, API compatible with Amazon S3 cloud storage service.
url: https://access.redhat.com/containers/#/registry.access.redhat.com/ubi8-minimal/images/8.3-201
vcs-ref: f53dab37c7541dd0080f410727c5886e85c09ee7
vcs-type: git
vendor: MinIO Inc dev@min.io
version: RELEASE.2020-11-25T22-36-25Z
{'Type': 'volume', 'Name': 's3data', 'Source': '/var/lib/docker/volumes/s3data/_data', 'Destination': '/data', 'Driver': 'local', 'Mode': 'z', 'RW': True, 'Propagation': ''}/minioNetworks: {"openctiv4_default": {"IPAMConfig": {}, "Links": null, "Aliases": null, "NetworkID": "51bdffad4912288c4232bdc10e4e0c54a029b1291db71e3034c6b6353fb10a86", "EndpointID": "b3d4562edf6ea434a58ac398ca2c179cb95740af5e4c3bf970499544413397a4", "Gateway": "1.0.0.5", "IPAddress": "1.0.0.5", "IPPrefixLen": 16, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "02:42:ac:18:00:05", "DriverOpts": null}}{'IP': '0.0.0.0', 'PrivatePort': 9000, 'PublicPort': 5000, 'Type': 'tcp'}runningUp 23 minutes
/portainer1608307988NetworkMode: default63de66e6e323ae7e189aeeba070adc184b386456ffe0dde9e3a88b8da0660d54portainer/portainer-cesha256:a0a227bf03ddc8b88bbb74b1b84a8a7220c8fa95b122cbde2a7444f32dc30659{'Type': 'volume', 'Name': 'portainer_data', 'Source': '/var/lib/docker/volumes/portainer_data/_data', 'Destination': '/data', 'Driver': 'local', 'Mode': 'z', 'RW': True, 'Propagation': ''},
{'Type': 'bind', 'Source': '/var/run/docker.sock', 'Destination': '/var/run/docker.sock', 'Mode': '', 'RW': True, 'Propagation': 'rprivate'}
/portainerNetworks: {"bridge": {"IPAMConfig": null, "Links": null, "Aliases": null, "NetworkID": "bd9761f59994adf640e4728dfdf92856d8292a649e4cf6b102ddbed672445a34", "EndpointID": "338cd95d726c3fde9674c4e86a9754ad5041ed9f3ea67b533224d8d27f2203f8", "Gateway": "1.0.0.7", "IPAddress": "1.0.0.3", "IPPrefixLen": 16, "IPv6Gateway": "", "GlobalIPv6Address": "", "GlobalIPv6PrefixLen": 0, "MacAddress": "02:42:ac:11:00:03", "DriverOpts": null}}{'IP': '0.0.0.0', 'PrivatePort': 8000, 'PublicPort': 8000, 'Type': 'tcp'},
{'IP': '0.0.0.0', 'PrivatePort': 9000, 'PublicPort': 9000, 'Type': 'tcp'}
runningUp 23 minutes

docker-container-stats#


Get container stats based on resource usage

Base Command#

docker-container-stats

Input#

Argument NameDescriptionRequired
idID or name of the container.Required
streamStream the output. If false, the stats will be output once and then it will disconnect. .Optional
one_shotOnly get a single stat instead of waiting for 2 cycles. Must be used with stream=false. .Optional

Context Output#

There is no context output for this command.

Command Example#

!docker-container-stats id="04be62e20d33bf299865e26b657ec5516928641558ccff6a899407ab0b6b1d94"

Context Example#

{
"Docker": {
"blkio_stats": {
"io_merged_recursive": [],
"io_queue_recursive": [],
"io_service_bytes_recursive": [
{
"major": 8,
"minor": 0,
"op": "Read",
"value": 51187712
},
{
"major": 8,
"minor": 0,
"op": "Write",
"value": 8192
},
{
"major": 8,
"minor": 0,
"op": "Sync",
"value": 51187712
},
{
"major": 8,
"minor": 0,
"op": "Async",
"value": 8192
},
{
"major": 8,
"minor": 0,
"op": "Discard",
"value": 0
},
{
"major": 8,
"minor": 0,
"op": "Total",
"value": 51195904
},
{
"major": 253,
"minor": 0,
"op": "Read",
"value": 51187712
},
{
"major": 253,
"minor": 0,
"op": "Write",
"value": 8192
},
{
"major": 253,
"minor": 0,
"op": "Sync",
"value": 51187712
},
{
"major": 253,
"minor": 0,
"op": "Async",
"value": 8192
},
{
"major": 253,
"minor": 0,
"op": "Discard",
"value": 0
},
{
"major": 253,
"minor": 0,
"op": "Total",
"value": 51195904
}
],
"io_service_time_recursive": [],
"io_serviced_recursive": [
{
"major": 8,
"minor": 0,
"op": "Read",
"value": 921
},
{
"major": 8,
"minor": 0,
"op": "Write",
"value": 2
},
{
"major": 8,
"minor": 0,
"op": "Sync",
"value": 921
},
{
"major": 8,
"minor": 0,
"op": "Async",
"value": 2
},
{
"major": 8,
"minor": 0,
"op": "Discard",
"value": 0
},
{
"major": 8,
"minor": 0,
"op": "Total",
"value": 923
},
{
"major": 253,
"minor": 0,
"op": "Read",
"value": 903
},
{
"major": 253,
"minor": 0,
"op": "Write",
"value": 2
},
{
"major": 253,
"minor": 0,
"op": "Sync",
"value": 903
},
{
"major": 253,
"minor": 0,
"op": "Async",
"value": 2
},
{
"major": 253,
"minor": 0,
"op": "Discard",
"value": 0
},
{
"major": 253,
"minor": 0,
"op": "Total",
"value": 905
}
],
"io_time_recursive": [],
"io_wait_time_recursive": [],
"sectors_recursive": []
},
"cpu_stats": {
"cpu_usage": {
"percpu_usage": [
80337610,
246108128,
104408379,
375538972,
131439025,
327257147,
130127173,
187607760
],
"total_usage": 1582824194,
"usage_in_kernelmode": 150000000,
"usage_in_usermode": 1400000000
},
"online_cpus": 8,
"system_cpu_usage": 613825660000000,
"throttling_data": {
"periods": 0,
"throttled_periods": 0,
"throttled_time": 0
}
},
"id": "04be62e20d33bf299865e26b657ec5516928641558ccff6a899407ab0b6b1d94",
"memory_stats": {
"limit": 8143470592,
"max_usage": 107409408,
"stats": {
"active_anon": 50569216,
"active_file": 2973696,
"cache": 48525312,
"dirty": 0,
"hierarchical_memory_limit": 9223372036854772000,
"hierarchical_memsw_limit": 9223372036854772000,
"inactive_anon": 0,
"inactive_file": 45281280,
"mapped_file": 14598144,
"pgfault": 28974,
"pgmajfault": 0,
"pgpgin": 34947,
"pgpgout": 10597,
"rss": 50515968,
"rss_huge": 0,
"total_active_anon": 50569216,
"total_active_file": 2973696,
"total_cache": 48525312,
"total_dirty": 0,
"total_inactive_anon": 0,
"total_inactive_file": 45281280,
"total_mapped_file": 14598144,
"total_pgfault": 28974,
"total_pgmajfault": 0,
"total_pgpgin": 34947,
"total_pgpgout": 10597,
"total_rss": 50515968,
"total_rss_huge": 0,
"total_unevictable": 0,
"total_writeback": 0,
"unevictable": 0,
"writeback": 0
},
"usage": 107155456
},
"name": "/test-taxii",
"networks": {
"eth0": {
"rx_bytes": 1436,
"rx_dropped": 0,
"rx_errors": 0,
"rx_packets": 18,
"tx_bytes": 0,
"tx_dropped": 0,
"tx_errors": 0,
"tx_packets": 0
}
},
"num_procs": 0,
"pids_stats": {
"current": 3
},
"precpu_stats": {
"cpu_usage": {
"percpu_usage": [
80234549,
246108128,
104408379,
375538972,
131439025,
327257147,
130127173,
187607760
],
"total_usage": 1582721133,
"usage_in_kernelmode": 150000000,
"usage_in_usermode": 1400000000
},
"online_cpus": 8,
"system_cpu_usage": 613817680000000,
"throttling_data": {
"periods": 0,
"throttled_periods": 0,
"throttled_time": 0
}
},
"preread": "2021-01-10T07:34:03.405981877Z",
"read": "2021-01-10T07:34:04.407988262Z",
"storage_stats": {}
}
}

Human Readable Output#

Results#

blkio_statscpu_statsidmemory_statsnamenetworksnum_procspids_statsprecpu_statsprereadreadstorage_stats
io_service_bytes_recursive: {'major': 8, 'minor': 0, 'op': 'Read', 'value': 51187712},
{'major': 8, 'minor': 0, 'op': 'Write', 'value': 8192},
{'major': 8, 'minor': 0, 'op': 'Sync', 'value': 51187712},
{'major': 8, 'minor': 0, 'op': 'Async', 'value': 8192},
{'major': 8, 'minor': 0, 'op': 'Discard', 'value': 0},
{'major': 8, 'minor': 0, 'op': 'Total', 'value': 51195904},
{'major': 253, 'minor': 0, 'op': 'Read', 'value': 51187712},
{'major': 253, 'minor': 0, 'op': 'Write', 'value': 8192},
{'major': 253, 'minor': 0, 'op': 'Sync', 'value': 51187712},
{'major': 253, 'minor': 0, 'op': 'Async', 'value': 8192},
{'major': 253, 'minor': 0, 'op': 'Discard', 'value': 0},
{'major': 253, 'minor': 0, 'op': 'Total', 'value': 51195904}
io_serviced_recursive: {'major': 8, 'minor': 0, 'op': 'Read', 'value': 921},
{'major': 8, 'minor': 0, 'op': 'Write', 'value': 2},
{'major': 8, 'minor': 0, 'op': 'Sync', 'value': 921},
{'major': 8, 'minor': 0, 'op': 'Async', 'value': 2},
{'major': 8, 'minor': 0, 'op': 'Discard', 'value': 0},
{'major': 8, 'minor': 0, 'op': 'Total', 'value': 923},
{'major': 253, 'minor': 0, 'op': 'Read', 'value': 903},
{'major': 253, 'minor': 0, 'op': 'Write', 'value': 2},
{'major': 253, 'minor': 0, 'op': 'Sync', 'value': 903},
{'major': 253, 'minor': 0, 'op': 'Async', 'value': 2},
{'major': 253, 'minor': 0, 'op': 'Discard', 'value': 0},
{'major': 253, 'minor': 0, 'op': 'Total', 'value': 905}
io_queue_recursive:
io_service_time_recursive:
io_wait_time_recursive:
io_merged_recursive:
io_time_recursive:
sectors_recursive:
cpu_usage: {"total_usage": 1582824194, "percpu_usage": [80337610, 246108128, 104408379, 375538972, 131439025, 327257147, 130127173, 187607760], "usage_in_kernelmode": 150000000, "usage_in_usermode": 1400000000}
system_cpu_usage: 613825660000000
online_cpus: 8
throttling_data: {"periods": 0, "throttled_periods": 0, "throttled_time": 0}
04be62e20d33bf299865e26b657ec5516928641558ccff6a899407ab0b6b1d94usage: 107155456
max_usage: 107409408
stats: {"active_anon": 50569216, "active_file": 2973696, "cache": 48525312, "dirty": 0, "hierarchical_memory_limit": 9223372036854771712, "hierarchical_memsw_limit": 9223372036854771712, "inactive_anon": 0, "inactive_file": 45281280, "mapped_file": 14598144, "pgfault": 28974, "pgmajfault": 0, "pgpgin": 34947, "pgpgout": 10597, "rss": 50515968, "rss_huge": 0, "total_active_anon": 50569216, "total_active_file": 2973696, "total_cache": 48525312, "total_dirty": 0, "total_inactive_anon": 0, "total_inactive_file": 45281280, "total_mapped_file": 14598144, "total_pgfault": 28974, "total_pgmajfault": 0, "total_pgpgin": 34947, "total_pgpgout": 10597, "total_rss": 50515968, "total_rss_huge": 0, "total_unevictable": 0, "total_writeback": 0, "unevictable": 0, "writeback": 0}
limit: 8143470592
/test-taxiieth0: {"rx_bytes": 1436, "rx_packets": 18, "rx_errors": 0, "rx_dropped": 0, "tx_bytes": 0, "tx_packets": 0, "tx_errors": 0, "tx_dropped": 0}0current: 3cpu_usage: {"total_usage": 1582721133, "percpu_usage": [80234549, 246108128, 104408379, 375538972, 131439025, 327257147, 130127173, 187607760], "usage_in_kernelmode": 150000000, "usage_in_usermode": 1400000000}
system_cpu_usage: 613817680000000
online_cpus: 8
throttling_data: {"periods": 0, "throttled_periods": 0, "throttled_time": 0}
2021-01-10T07:34:03.405981877Z2021-01-10T07:34:04.407988262Z

docker-container-top#


List processes running inside a container

Base Command#

docker-container-top

Input#

Argument NameDescriptionRequired
idID or name of the container.Required
ps_argsThe arguments to pass to ps. For example, aux.Optional

Context Output#

PathTypeDescription
Docker.ContainerTopResponse.ProcessesStringDocker ContainerTopResponse Processes

Command Example#

!docker-container-top id="04be62e20d33bf299865e26b657ec5516928641558ccff6a899407ab0b6b1d94"

Context Example#

{
"Docker": {
"ContainerTopResponse": {
"Processes": [
[
"root",
"3830",
"3780",
"0",
"11:10",
"?",
"00:00:01",
"/venv/bin/python3 /venv/bin/gunicorn opentaxii.http:app --workers=2 --log-level=info --log-file=- --timeout=300 --config=python:opentaxii.http --bind=0.0.0.0:9000"
],
[
"root",
"6188",
"3830",
"0",
"11:10",
"?",
"00:00:00",
"/venv/bin/python3 /venv/bin/gunicorn opentaxii.http:app --workers=2 --log-level=info --log-file=- --timeout=300 --config=python:opentaxii.http --bind=0.0.0.0:9000"
],
[
"root",
"6190",
"3830",
"0",
"11:10",
"?",
"00:00:00",
"/venv/bin/python3 /venv/bin/gunicorn opentaxii.http:app --workers=2 --log-level=info --log-file=- --timeout=300 --config=python:opentaxii.http --bind=0.0.0.0:9000"
]
],
"Titles": [
"UID",
"PID",
"PPID",
"C",
"STIME",
"TTY",
"TIME",
"CMD"
]
}
}
}

Human Readable Output#

Results#

ProcessesTitles
['root', '3830', '3780', '0', '11:10', '?', '00:00:01', '/venv/bin/python3 /venv/bin/gunicorn opentaxii.http:app --workers=2 --log-level=info --log-file=- --timeout=300 --config=python:opentaxii.http --bind=0.0.0.0:9000'],
['root', '6188', '3830', '0', '11:10', '?', '00:00:00', '/venv/bin/python3 /venv/bin/gunicorn opentaxii.http:app --workers=2 --log-level=info --log-file=- --timeout=300 --config=python:opentaxii.http --bind=0.0.0.0:9000'],
['root', '6190', '3830', '0', '11:10', '?', '00:00:00', '/venv/bin/python3 /venv/bin/gunicorn opentaxii.http:app --workers=2 --log-level=info --log-file=- --timeout=300 --config=python:opentaxii.http --bind=0.0.0.0:9000']
UID,
PID,
PPID,
C,
STIME,
TTY,
TIME,
CMD

docker-image-create#


Create an image by either pulling it from a registry or importing it.

Base Command#

docker-image-create

Input#

Argument NameDescriptionRequired
from_imageName of the image to pull. The name may include a tag or digest. This parameter may only be used when pulling an image. The pull is cancelled if the HTTP connection is closed.Optional
from_srcSource to import. The value may be a URL from which the image can be retrieved or - to read the image from the request body. This parameter may only be used when importing an image.Optional
repoRepository name given to an image when it is imported. The repo may include a tag. This parameter may only be used when importing an image.Optional
tagTag or digest. If empty when pulling an image, this causes all tags for the given image to be pulled.Optional
messageSet commit message for imported image.Optional
platformPlatform in the format os[/arch[/variant]].Optional

Context Output#

PathTypeDescription
Docker.ImageCreate.StatusStringImage Create result

Command example#

!docker-image-create from_image="alpine:latest"

Context Example#

{
"Docker": {
"ImageCreate": {
"status": "Status: Downloaded newer image for alpine:latest"
}
}
}

Human Readable Output#

Results#

status
Status: Downloaded newer image for alpine:latest

docker-image-delete#


Remove an image, along with any untagged parent images that were referenced by that image. Images can't be removed if they have descendant images, are being used by a running container or are being used by a build.

Base Command#

docker-image-delete

Input#

Argument NameDescriptionRequired
nameImage name or ID.Required
forceRemove the image even if it is being used by stopped containers or has other tags. Possible values are: false, true. Default is false.Optional
nopruneDo not delete untagged parent images. Possible values are: false, true. Default is false.Optional

Context Output#

PathTypeDescription
Docker.ImageDeleteResponseItemstringDeletion Response

Command example#

!docker-image-delete name="alpine:latest"

Context Example#

{
"Docker": {
"ImageDeleteResponseItem": [
{
"Untagged": "alpine:latest"
},
{
"Untagged": "alpine@sha256:686d8c9dfa6f3ccfc8230bc3178d23f84eeaf7e457f36f271ab1acc53015037c"
}
]
}
}

Human Readable Output#

Results#

Untagged
alpine:latest
alpine@sha256:686d8c9dfa6f3ccfc8230bc3178d23f84eeaf7e457f36f271ab1acc53015037c

docker-image-history#


Get the history of an image

Base Command#

docker-image-history

Input#

Argument NameDescriptionRequired
nameImage name or ID.Required

Context Output#

PathTypeDescription
Docker.HistoryResponseItem.IdStringDocker HistoryResponseItem Id
Docker.HistoryResponseItem.CreatedNumberDocker HistoryResponseItem Created
Docker.HistoryResponseItem.CreatedByStringDocker HistoryResponseItem CreatedBy
Docker.HistoryResponseItem.SizeNumberDocker HistoryResponseItem Size
Docker.HistoryResponseItem.CommentStringDocker HistoryResponseItem Comment

Command Example#

!docker-image-history name="05bf9d904cd0953ee1ad647a61abfb0ab1470062f8baa70495b4b068e95a514e"

Context Example#

{
"Docker": {
"HistoryResponseItem": [
{
"Comment": "",
"Created": 1609870186,
"CreatedBy": "/bin/sh -c #(nop) CMD [\"mongo-express\"]",
"Id": "sha256:05bf9d904cd0953ee1ad647a61abfb0ab1470062f8baa70495b4b068e95a514e",
"Size": 0,
"Tags": [
"mongo-express:latest"
]
},
{
"Comment": "",
"Created": 1609870186,
"CreatedBy": "/bin/sh -c #(nop) ENTRYPOINT [\"tini\" \"--\" \"/docker-entrypoint.sh\"]",
"Id": "missing",
"Size": 0,
"Tags": null
},
{
"Comment": "",
"Created": 1609870186,
"CreatedBy": "/bin/sh -c cp config.default.js config.js",
"Id": "missing",
"Size": 8142,
"Tags": null
},
{
"Comment": "",
"Created": 1609870185,
"CreatedBy": "/bin/sh -c #(nop) WORKDIR /node_modules/mongo-express",
"Id": "missing",
"Size": 0,
"Tags": null
},
{
"Comment": "",
"Created": 1609870185,
"CreatedBy": "/bin/sh -c #(nop) COPY file:ad71ad0a2a1967b86be9140686f9a9aa6f78dc470d2ec9de89cbf1a25e85b550 in / ",
"Id": "missing",
"Size": 1017,
"Tags": null
},
{
"Comment": "",
"Created": 1609870184,
"CreatedBy": "/bin/sh -c set -eux; \tapk add --no-cache --virtual .me-install-deps git; \tnpm install mongo-express@$MONGO_EXPRESS; \tapk del --no-network .me-install-deps",
"Id": "missing",
"Size": 38458723,
"Tags": null
},
{
"Comment": "",
"Created": 1609870163,
"CreatedBy": "/bin/sh -c #(nop) ENV MONGO_EXPRESS=0.54.0",
"Id": "missing",
"Size": 0,
"Tags": null
},
{
"Comment": "",
"Created": 1609870162,
"CreatedBy": "/bin/sh -c #(nop) ENV ME_CONFIG_EDITORTHEME=default ME_CONFIG_MONGODB_SERVER=mongo ME_CONFIG_MONGODB_ENABLE_ADMIN=true ME_CONFIG_BASICAUTH_USERNAME= ME_CONFIG_BASICAUTH_PASSWORD= VCAP_APP_HOST=0.0.0.0",
"Id": "missing",
"Size": 0,
"Tags": null
},
{
"Comment": "",
"Created": 1609870162,
"CreatedBy": "/bin/sh -c #(nop) EXPOSE 8081",
"Id": "missing",
"Size": 0,
"Tags": null
},
{
"Comment": "",
"Created": 1609870162,
"CreatedBy": "/bin/sh -c apk add --no-cache bash tini",
"Id": "missing",
"Size": 2026658,
"Tags": null
},
{
"Comment": "",
"Created": 1609867823,
"CreatedBy": "/bin/sh -c #(nop) CMD [\"node\"]",
"Id": "missing",
"Size": 0,
"Tags": null
},
{
"Comment": "",
"Created": 1609867822,
"CreatedBy": "/bin/sh -c #(nop) ENTRYPOINT [\"docker-entrypoint.sh\"]",
"Id": "missing",
"Size": 0,
"Tags": null
},
{
"Comment": "",
"Created": 1609867822,
"CreatedBy": "/bin/sh -c #(nop) COPY file:238737301d47304174e4d24f4def935b29b3069c03c72ae8de97d94624382fce in /usr/local/bin/ ",
"Id": "missing",
"Size": 116,
"Tags": null
},
{
"Comment": "",
"Created": 1609867821,
"CreatedBy": "/bin/sh -c apk add --no-cache --virtual .build-deps-yarn curl gnupg tar && for key in 6A010C5166006599AA17F08146C2130DFD2497F5 ; do gpg --batch --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys \"$key\" || gpg --batch --keyserver hkp://ipv4.pool.sks-keyservers.net --recv-keys \"$key\" || gpg --batch --keyserver hkp://pgp.mit.edu:80 --recv-keys \"$key\" ; done && curl -fsSLO --compressed \"https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz\" && curl -fsSLO --compressed \"https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz.asc\" && gpg --batch --verify yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz && mkdir -p /opt && tar -xzf yarn-v$YARN_VERSION.tar.gz -C /opt/ && ln -s /opt/yarn-v$YARN_VERSION/bin/yarn /usr/local/bin/yarn && ln -s /opt/yarn-v$YARN_VERSION/bin/yarnpkg /usr/local/bin/yarnpkg && rm yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz && apk del .build-deps-yarn && yarn --version",
"Id": "missing",
"Size": 7622724,
"Tags": null
},
{
"Comment": "",
"Created": 1609867816,
"CreatedBy": "/bin/sh -c #(nop) ENV YARN_VERSION=1.22.5",
"Id": "missing",
"Size": 0,
"Tags": null
},
{
"Comment": "",
"Created": 1609867816,
"CreatedBy": "/bin/sh -c addgroup -g 1000 node && adduser -u 1000 -G node -s /bin/sh -D node && apk add --no-cache libstdc++ && apk add --no-cache --virtual .build-deps curl && ARCH= && alpineArch=\"$(apk --print-arch)\" && case \"${alpineArch##*-}\" in x86_64) ARCH='x64' CHECKSUM=\"783fbfc85228418d0630b778214bdcea3a82d5c3ac13aefcc14e4a81e977d9c9\" ;; *) ;; esac && if [ -n \"${CHECKSUM}\" ]; then set -eu; curl -fsSLO --compressed \"https://unofficial-builds.nodejs.org/download/release/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz\"; echo \"$CHECKSUM node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz\" | sha256sum -c - && tar -xJf \"node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz\" -C /usr/local --strip-components=1 --no-same-owner && ln -s /usr/local/bin/node /usr/local/bin/nodejs; else echo \"Building from source\" && apk add --no-cache --virtual .build-deps-full binutils-gold g++ gcc gnupg libgcc linux-headers make python2 && for key in 4ED778F539E3634C779C87C6D7062848A1AB005C 94AE36675C464D64BAFA68DD7434390BDBE9B9C5 1C050899334244A8AF75E53792EF661D867B9DFA 71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C DD8F2338BAE7501E3DD5AC78C273792F7D83545D A48C2BEE680E841632CD4E44F07496B3EB3C1762 108F52B48DB57BB0CC439B2997B01419BD92F80A B9E2F5981AA6E0CD28160D9FF13993A75599653C ; do gpg --batch --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys \"$key\" || gpg --batch --keyserver hkp://ipv4.pool.sks-keyservers.net --recv-keys \"$key\" || gpg --batch --keyserver hkp://pgp.mit.edu:80 --recv-keys \"$key\" ; done && curl -fsSLO --compressed \"https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION.tar.xz\" && curl -fsSLO --compressed \"https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc\" && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc && grep \" node-v$NODE_VERSION.tar.xz\\$\" SHASUMS256.txt | sha256sum -c - && tar -xf \"node-v$NODE_VERSION.tar.xz\" && cd \"node-v$NODE_VERSION\" && ./configure && make -j$(getconf _NPROCESSORS_ONLN) V= && make install && apk del .build-deps-full && cd .. && rm -Rf \"node-v$NODE_VERSION\" && rm \"node-v$NODE_VERSION.tar.xz\" SHASUMS256.txt.asc SHASUMS256.txt; fi && rm -f \"node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz\" && apk del .build-deps && node --version && npm --version",
"Id": "missing",
"Size": 75656589,
"Tags": null
},
{
"Comment": "",
"Created": 1609867804,
"CreatedBy": "/bin/sh -c #(nop) ENV NODE_VERSION=12.20.1",
"Id": "missing",
"Size": 0,
"Tags": null
},
{
"Comment": "",
"Created": 1608164389,
"CreatedBy": "/bin/sh -c #(nop) CMD [\"/bin/sh\"]",
"Id": "missing",
"Size": 0,
"Tags": null
},
{
"Comment": "",
"Created": 1608164389,
"CreatedBy": "/bin/sh -c #(nop) ADD file:8ed80010e443da19d72546bcee9a35e0a8d244c72052b1994610bf5939d479c2 in / ",
"Id": "missing",
"Size": 5614943,
"Tags": null
}
]
}
}

Human Readable Output#

Results#

CommentCreatedCreatedByIdSizeTags
1609870186/bin/sh -c #(nop) CMD ["mongo-express"]sha256:05bf9d904cd0953ee1ad647a61abfb0ab1470062f8baa70495b4b068e95a514e0mongo-express:latest
1609870186/bin/sh -c cp config.default.js config.jsmissing8142
1609870185/bin/sh -c #(nop) WORKDIR /node_modules/mongo-expressmissing0
1609870185/bin/sh -c #(nop) COPY file:ad71ad0a2a1967b86be9140686f9a9aa6f78dc470d2ec9de89cbf1a25e85b550 in /missing1017
1609870184/bin/sh -c set -eux; apk add --no-cache --virtual .me-install-deps git; npm install mongo-express@$MONGO_EXPRESS; apk del --no-network .me-install-depsmissing38458723
1609870163/bin/sh -c #(nop) ENV MONGO_EXPRESS=0.54.0missing0
1609870162/bin/sh -c #(nop) ENV ME_CONFIG_EDITORTHEME=default ME_CONFIG_MONGODB_SERVER=mongo ME_CONFIG_MONGODB_ENABLE_ADMIN=true ME_CONFIG_BASICAUTH_USERNAME= ME_CONFIG_BASICAUTH_PASSWORD= VCAP_APP_HOST=0.0.0.0missing0
1609870162/bin/sh -c #(nop) EXPOSE 8081missing0
1609870162/bin/sh -c apk add --no-cache bash tinimissing2026658
1609867823/bin/sh -c #(nop) CMD ["node"]missing0
1609867822/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]missing0
1609867822/bin/sh -c #(nop) COPY file:238737301d47304174e4d24f4def935b29b3069c03c72ae8de97d94624382fce in /usr/local/bin/missing116
1609867821/bin/sh -c apk add --no-cache --virtual .build-deps-yarn curl gnupg tar && for key in 6A010C5166006599AA17F08146C2130DFD2497F5 ; do gpg --batch --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys "$key" || gpg --batch --keyserver hkp://ipv4.pool.sks-keyservers.net --recv-keys "$key" || gpg --batch --keyserver hkp://pgp.mit.edu:80 --recv-keys "$key" ; done && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz" && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz.asc" && gpg --batch --verify yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz && mkdir -p /opt && tar -xzf yarn-v$YARN_VERSION.tar.gz -C /opt/ && ln -s /opt/yarn-v$YARN_VERSION/bin/yarn /usr/local/bin/yarn && ln -s /opt/yarn-v$YARN_VERSION/bin/yarnpkg /usr/local/bin/yarnpkg && rm yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz && apk del .build-deps-yarn && yarn --versionmissing7622724
1609867816/bin/sh -c #(nop) ENV YARN_VERSION=1.22.5missing0
1609867816/bin/sh -c addgroup -g 1000 node && adduser -u 1000 -G node -s /bin/sh -D node && apk add --no-cache libstdc++ && apk add --no-cache --virtual .build-deps curl && ARCH= && alpineArch="$(apk --print-arch)" && case "${alpineArch##-}" in x86_64) ARCH='x64' CHECKSUM="783fbfc85228418d0630b778214bdcea3a82d5c3ac13aefcc14e4a81e977d9c9" ;; ) ;; esac && if [ -n "${CHECKSUM}" ]; then set -eu; curl -fsSLO --compressed "https://unofficial-builds.nodejs.org/download/release/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz"; echo "$CHECKSUM node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz" | sha256sum -c - && tar -xJf "node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz" -C /usr/local --strip-components=1 --no-same-owner && ln -s /usr/local/bin/node /usr/local/bin/nodejs; else echo "Building from source" && apk add --no-cache --virtual .build-deps-full binutils-gold g++ gcc gnupg libgcc linux-headers make python2 && for key in 4ED778F539E3634C779C87C6D7062848A1AB005C 94AE36675C464D64BAFA68DD7434390BDBE9B9C5 1C050899334244A8AF75E53792EF661D867B9DFA 71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C DD8F2338BAE7501E3DD5AC78C273792F7D83545D A48C2BEE680E841632CD4E44F07496B3EB3C1762 108F52B48DB57BB0CC439B2997B01419BD92F80A B9E2F5981AA6E0CD28160D9FF13993A75599653C ; do gpg --batch --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys "$key" || gpg --batch --keyserver hkp://ipv4.pool.sks-keyservers.net --recv-keys "$key" || gpg --batch --keyserver hkp://pgp.mit.edu:80 --recv-keys "$key" ; done && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION.tar.xz" && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc && grep " node-v$NODE_VERSION.tar.xz\$" SHASUMS256.txt | sha256sum -c - && tar -xf "node-v$NODE_VERSION.tar.xz" && cd "node-v$NODE_VERSION" && ./configure && make -j$(getconf _NPROCESSORS_ONLN) V= && make install && apk del .build-deps-full && cd .. && rm -Rf "node-v$NODE_VERSION" && rm "node-v$NODE_VERSION.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt; fi && rm -f "node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz" && apk del .build-deps && node --version && npm --versionmissing75656589
1609867804/bin/sh -c #(nop) ENV NODE_VERSION=12.20.1missing0
1608164389/bin/sh -c #(nop) CMD ["/bin/sh"]missing0
1608164389/bin/sh -c #(nop) ADD file:8ed80010e443da19d72546bcee9a35e0a8d244c72052b1994610bf5939d479c2 in /missing5614943

docker-image-inspect#


Inspect an image

Base Command#

docker-image-inspect

Input#

Argument NameDescriptionRequired
nameImage name or id.Required

Context Output#

PathTypeDescription
Docker.Image.IdStringDocker Image ID
Docker.Image.ParentStringDocker Image Parent
Docker.Image.CommentStringDocker Image Comment
Docker.Image.CreatedStringDocker Image Created
Docker.Image.ContainerStringDocker Image Container
Docker.Image.DockerVersionStringDocker Image DockerVersion
Docker.Image.AuthorStringDocker Image Author
Docker.Image.ArchitectureStringDocker Image Architecture
Docker.Image.OsStringDocker Image Os
Docker.Image.OsVersionStringDocker Image OsVersion
Docker.Image.SizeNumberDocker Image Size
Docker.Image.VirtualSizeNumberDocker Image VirtualSize

Command Example#

!docker-image-inspect name="05bf9d904cd0953ee1ad647a61abfb0ab1470062f8baa70495b4b068e95a514e"

Context Example#

{
"Docker": {
"Image": {
"Architecture": "amd64",
"Author": "",
"Comment": "",
"Config": {
"AttachStderr": false,
"AttachStdin": false,
"AttachStdout": false,
"Cmd": [
"mongo-express"
],
"Domainname": "",
"Entrypoint": [
"tini",
"--",
"/docker-entrypoint.sh"
],
"Env": [
"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
"NODE_VERSION=12.20.1",
"YARN_VERSION=1.22.5",
"ME_CONFIG_EDITORTHEME=default",
"ME_CONFIG_MONGODB_SERVER=mongo",
"ME_CONFIG_MONGODB_ENABLE_ADMIN=true",
"ME_CONFIG_BASICAUTH_USERNAME=",
"ME_CONFIG_BASICAUTH_PASSWORD=",
"VCAP_APP_HOST=0.0.0.0",
"MONGO_EXPRESS=0.54.0"
],
"ExposedPorts": {
"8081/tcp": {}
},
"Hostname": "",
"Image": "sha256:a40e2035f4c886f16698034a527edd6a4c3bff2dbf22ecb5dcb461ac33ea798a",
"Labels": null,
"OnBuild": null,
"OpenStdin": false,
"StdinOnce": false,
"Tty": false,
"User": "",
"Volumes": null,
"WorkingDir": "/node_modules/mongo-express"
},
"Container": "91acb3f551fd19d56a0f0b1582f664f2069239a5d9ed999ac38dc161392fedc9",
"ContainerConfig": {
"AttachStderr": false,
"AttachStdin": false,
"AttachStdout": false,
"Cmd": [
"/bin/sh",
"-c",
"#(nop) ",
"CMD [\"mongo-express\"]"
],
"Domainname": "",
"Entrypoint": [
"tini",
"--",
"/docker-entrypoint.sh"
],
"Env": [
"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
"NODE_VERSION=12.20.1",
"YARN_VERSION=1.22.5",
"ME_CONFIG_EDITORTHEME=default",
"ME_CONFIG_MONGODB_SERVER=mongo",
"ME_CONFIG_MONGODB_ENABLE_ADMIN=true",
"ME_CONFIG_BASICAUTH_USERNAME=",
"ME_CONFIG_BASICAUTH_PASSWORD=",
"VCAP_APP_HOST=0.0.0.0",
"MONGO_EXPRESS=0.54.0"
],
"ExposedPorts": {
"8081/tcp": {}
},
"Hostname": "91acb3f551fd",
"Image": "sha256:a40e2035f4c886f16698034a527edd6a4c3bff2dbf22ecb5dcb461ac33ea798a",
"Labels": {},
"OnBuild": null,
"OpenStdin": false,
"StdinOnce": false,
"Tty": false,
"User": "",
"Volumes": null,
"WorkingDir": "/node_modules/mongo-express"
},
"Created": "2021-01-05T18:09:46.916579532Z",
"DockerVersion": "19.03.12",
"GraphDriver": {
"Data": {
"LowerDir": "/var/lib/docker/overlay2/c0484e122f4fe26b7f63c04e38ccc18b2a932ae7ba00a1f223d966ce6889ec8d/diff:/var/lib/docker/overlay2/eab51a1fd1f1abde2b80839670b68909d0edbd1ae5528526308ee496593da92d/diff:/var/lib/docker/overlay2/f152df862c74cc8f87423425a78c618e38285b61ad193e5c9d69abc4b801ebfd/diff:/var/lib/docker/overlay2/79be70a57f5523e094ddf66406736876bda8d400cf4e41cae52650b938c1ea4f/diff:/var/lib/docker/overlay2/a0082ccffb2ad9b0bf73e98617defb1511ba6537c21709675b2b2b474f9c9642/diff:/var/lib/docker/overlay2/5b5385f706911829168165cd805284c213400e11c849838a9835e44e8c81692c/diff:/var/lib/docker/overlay2/a621ef67bdf8bbd8965845f159240e790d8bd621fa123f97e94c56b9828bf0b3/diff",
"MergedDir": "/var/lib/docker/overlay2/5c7904a490e6f7f175426b17d1d9ef26951da650895e437bfc36ec11a99e4c37/merged",
"UpperDir": "/var/lib/docker/overlay2/5c7904a490e6f7f175426b17d1d9ef26951da650895e437bfc36ec11a99e4c37/diff",
"WorkDir": "/var/lib/docker/overlay2/5c7904a490e6f7f175426b17d1d9ef26951da650895e437bfc36ec11a99e4c37/work"
},
"Name": "overlay2"
},
"Id": "sha256:05bf9d904cd0953ee1ad647a61abfb0ab1470062f8baa70495b4b068e95a514e",
"Metadata": {
"LastTagTime": "0001-01-01T00:00:00Z"
},
"Os": "linux",
"Parent": "",
"RepoDigests": [
"mongo-express@sha256:6ae44c697cd2381772f8ea8f0571008b62e36301305b113df7f35f2e683e8255"
],
"RepoTags": [
"mongo-express:latest"
],
"RootFS": {
"Layers": [
"sha256:0fcbbeeeb0d7fc5c06362d7a6717b999e605574c7210eff4f7418f6e9be9fbfe",
"sha256:62d0a87660b82baeaac545f86febf9fa085015fc446edaa836b06189662a21bf",
"sha256:ab2b283144664cdf32922dbb6e6febceee3941aed7d77840765959d131b4cfd1",
"sha256:6693766656f04c9719744dcfa046c0d51c12676eb75880f325ccebf56a9a1d60",
"sha256:09a8b406deae52f384b03c2e7914f65fdbda67c412e4c7249542407e825fda9d",
"sha256:1a0d48792d28c938b4decb611fb3eebe6bf4efe4405ccfc1d77229bfd47a0ca4",
"sha256:a88f4e88722d6d6a553a5f35b624e6d6b1e20e3b22bb6c099524d437223dcba3",
"sha256:4257a8584459b164c82f0e8da2c79ada2f760d82dfee8bcd26f77a2de2f82a06"
],
"Type": "layers"
},
"Size": 129388912,
"VirtualSize": 129388912
}
}
}

Human Readable Output#

Results#

ArchitectureAuthorCommentConfigContainerContainerConfigCreatedDockerVersionGraphDriverIdMetadataOsParentRepoDigestsRepoTagsRootFSSizeVirtualSize
amd64Hostname:
Domainname:
User:
AttachStdin: false
AttachStdout: false
AttachStderr: false
ExposedPorts: {"8081/tcp": {}}
Tty: false
OpenStdin: false
StdinOnce: false
Env: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin,
NODE_VERSION=12.20.1,
YARN_VERSION=1.22.5,
ME_CONFIG_EDITORTHEME=default,
ME_CONFIG_MONGODB_SERVER=mongo,
ME_CONFIG_MONGODB_ENABLE_ADMIN=true,
ME_CONFIG_BASICAUTH_USERNAME=,
ME_CONFIG_BASICAUTH_PASSWORD=,
VCAP_APP_HOST=0.0.0.0,
MONGO_EXPRESS=0.54.0
Cmd: mongo-express
Image: sha256:a40e2035f4c886f16698034a527edd6a4c3bff2dbf22ecb5dcb461ac33ea798a
Volumes: null
WorkingDir: /node_modules/mongo-express
Entrypoint: tini,
--,
/docker-entrypoint.sh
OnBuild: null
Labels: null
91acb3f551fd19d56a0f0b1582f664f2069239a5d9ed999ac38dc161392fedc9Hostname: 91acb3f551fd
Domainname:
User:
AttachStdin: false
AttachStdout: false
AttachStderr: false
ExposedPorts: {"8081/tcp": {}}
Tty: false
OpenStdin: false
StdinOnce: false
Env: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin,
NODE_VERSION=12.20.1,
YARN_VERSION=1.22.5,
ME_CONFIG_EDITORTHEME=default,
ME_CONFIG_MONGODB_SERVER=mongo,
ME_CONFIG_MONGODB_ENABLE_ADMIN=true,
ME_CONFIG_BASICAUTH_USERNAME=,
ME_CONFIG_BASICAUTH_PASSWORD=,
VCAP_APP_HOST=0.0.0.0,
MONGO_EXPRESS=0.54.0
Cmd: /bin/sh,
-c,
#(nop) ,
CMD ["mongo-express"]
Image: sha256:a40e2035f4c886f16698034a527edd6a4c3bff2dbf22ecb5dcb461ac33ea798a
Volumes: null
WorkingDir: /node_modules/mongo-express
Entrypoint: tini,
--,
/docker-entrypoint.sh
OnBuild: null
Labels: {}
2021-01-05T18:09:46.916579532Z19.03.12Data: {"LowerDir": "/var/lib/docker/overlay2/c0484e122f4fe26b7f63c04e38ccc18b2a932ae7ba00a1f223d966ce6889ec8d/diff:/var/lib/docker/overlay2/eab51a1fd1f1abde2b80839670b68909d0edbd1ae5528526308ee496593da92d/diff:/var/lib/docker/overlay2/f152df862c74cc8f87423425a78c618e38285b61ad193e5c9d69abc4b801ebfd/diff:/var/lib/docker/overlay2/79be70a57f5523e094ddf66406736876bda8d400cf4e41cae52650b938c1ea4f/diff:/var/lib/docker/overlay2/a0082ccffb2ad9b0bf73e98617defb1511ba6537c21709675b2b2b474f9c9642/diff:/var/lib/docker/overlay2/5b5385f706911829168165cd805284c213400e11c849838a9835e44e8c81692c/diff:/var/lib/docker/overlay2/a621ef67bdf8bbd8965845f159240e790d8bd621fa123f97e94c56b9828bf0b3/diff", "MergedDir": "/var/lib/docker/overlay2/5c7904a490e6f7f175426b17d1d9ef26951da650895e437bfc36ec11a99e4c37/merged", "UpperDir": "/var/lib/docker/overlay2/5c7904a490e6f7f175426b17d1d9ef26951da650895e437bfc36ec11a99e4c37/diff", "WorkDir": "/var/lib/docker/overlay2/5c7904a490e6f7f175426b17d1d9ef26951da650895e437bfc36ec11a99e4c37/work"}
Name: overlay2
sha256:05bf9d904cd0953ee1ad647a61abfb0ab1470062f8baa70495b4b068e95a514eLastTagTime: 0001-01-01T00:00:00Zlinuxmongo-express@sha256:6ae44c697cd2381772f8ea8f0571008b62e36301305b113df7f35f2e683e8255mongo-express:latestType: layers
Layers: sha256:0fcbbeeeb0d7fc5c06362d7a6717b999e605574c7210eff4f7418f6e9be9fbfe,
sha256:62d0a87660b82baeaac545f86febf9fa085015fc446edaa836b06189662a21bf,
sha256:ab2b283144664cdf32922dbb6e6febceee3941aed7d77840765959d131b4cfd1,
sha256:6693766656f04c9719744dcfa046c0d51c12676eb75880f325ccebf56a9a1d60,
sha256:09a8b406deae52f384b03c2e7914f65fdbda67c412e4c7249542407e825fda9d,
sha256:1a0d48792d28c938b4decb611fb3eebe6bf4efe4405ccfc1d77229bfd47a0ca4,
sha256:a88f4e88722d6d6a553a5f35b624e6d6b1e20e3b22bb6c099524d437223dcba3,
sha256:4257a8584459b164c82f0e8da2c79ada2f760d82dfee8bcd26f77a2de2f82a06
129388912129388912

docker-image-list#


List Images

Base Command#

docker-image-list

Input#

Argument NameDescriptionRequired
list_allShow all images. Only images from a final layer (no children) are shown by default.Optional
filtersA JSON encoded value of the filters.Optional
digestsShow digest information as a RepoDigests field on each image.Optional

Context Output#

PathTypeDescription
Docker.ImageSummary.IdStringDocker Image Summary ID
Docker.ImageSummary.ParentIdStringDocker Image Summary ParentId
Docker.ImageSummary.CreatedNumberDocker Image Summary Created
Docker.ImageSummary.SizeNumberDocker Image Summary Size
Docker.ImageSummary.SharedSizeNumberDocker Image Summary SharedSize
Docker.ImageSummary.VirtualSizeNumberDocker Image Summary VirtualSize
Docker.ImageSummary.ContainersNumberDocker Image Summary Containers

Command Example#

!docker-image-list

Context Example#

{
"Docker": {
"ImageSummary": [
{
"Containers": -1,
"Created": 1609870186,
"Id": "sha256:05bf9d904cd0953ee1ad647a61abfb0ab1470062f8baa70495b4b068e95a514e",
"Labels": null,
"ParentId": "",
"RepoDigests": [
"mongo-express@sha256:6ae44c697cd2381772f8ea8f0571008b62e36301305b113df7f35f2e683e8255"
],
"RepoTags": [
"mongo-express:latest"
],
"SharedSize": -1,
"Size": 129388912,
"VirtualSize": 129388912
},
{
"Containers": -1,
"Created": 1609866227,
"Id": "sha256:70d8624ce3a1f02008bcdb8ba2bf4001e178bcb0ab90bdfab0eb17fd4ea2ca7f",
"Labels": null,
"ParentId": "sha256:c6c592c10fd1c88676835629a4b9d19f3e1354ca7d927c2d829628a53b427b3c",
"RepoDigests": null,
"RepoTags": [
"taxiserver:latest"
],
"SharedSize": -1,
"Size": 298529298,
"VirtualSize": 298529298
},
{
"Containers": -1,
"Created": 1609798872,
"Id": "sha256:c97feb3412a387d4d3bbd8653b09ef26683263a192e0e8dc6554e65bfb637a86",
"Labels": null,
"ParentId": "",
"RepoDigests": [
"mongo@sha256:7722bd2778a299b6f4a62b93a0d2741c734ba7332a090131030ca28261a9a198"
],
"RepoTags": [
"mongo:latest"
],
"SharedSize": -1,
"Size": 492934722,
"VirtualSize": 492934722
},
{
"Containers": -1,
"Created": 1608474777,
"Id": "sha256:670872e9f7dbae235172cb2b7c732b0ea05283aeb45fcaa4616673826f9c4473",
"Labels": null,
"ParentId": "",
"RepoDigests": [
"opencti/worker@sha256:5eef44425b59c272135cb6460232891cd607ccc4b5557a441cce3120624b9538"
],
"RepoTags": [
"opencti/worker:4.0.3"
],
"SharedSize": -1,
"Size": 129818770,
"VirtualSize": 129818770
},
{
"Containers": -1,
"Created": 1608474717,
"Id": "sha256:b03e4ab4fe4739d8ef6cd6a6639ccea8e09eaee8f6fb8842be9225c3719e27cd",
"Labels": null,
"ParentId": "",
"RepoDigests": [
"opencti/platform@sha256:19a610656b32bf6ff894e04a0dcf9064ce3e850b3fc2f497f5478a21598753e5"
],
"RepoTags": [
"opencti/platform:4.0.3"
],
"SharedSize": -1,
"Size": 718444737,
"VirtualSize": 718444737
},
{
"Containers": -1,
"Created": 1608473851,
"Id": "sha256:0257f00635aca1087fa630362c470f22c4661bc87d4e6e8c54c64f5795dfce1e",
"Labels": null,
"ParentId": "",
"RepoDigests": [
"opencti/connector-history@sha256:a80726951eb8d10acb6700c1ba1a602178e672f52b72787ed23f79d473d588cc"
],
"RepoTags": [
"opencti/connector-history:4.0.3"
],
"SharedSize": -1,
"Size": 68894193,
"VirtualSize": 68894193
},
{
"Containers": -1,
"Created": 1608473623,
"Id": "sha256:cd608aa8a042cb46adf5aaa3c43ce92a85b3817c5254b8de0e53b49b7a729c6b",
"Labels": null,
"ParentId": "",
"RepoDigests": [
"opencti/connector-ipinfo@sha256:ae818dcf18b0acf5bdd25279ada6feb7f05c9b1745c847d3930a1fdaee555c57"
],
"RepoTags": [
"opencti/connector-ipinfo:4.0.3"
],
"SharedSize": -1,
"Size": 94145314,
"VirtualSize": 94145314
},
{
"Containers": -1,
"Created": 1608472895,
"Id": "sha256:3e718135d5fb38c0af85c9c00b64160082a407722d929572a190d6092c604e15",
"Labels": null,
"ParentId": "",
"RepoDigests": [
"opencti/connector-alienvault@sha256:417b9cf7ed4f8ab5ebb391c52a38decfa306ef89b5dbc1853a85280f75fdd78d"
],
"RepoTags": [
"opencti/connector-alienvault:4.0.3"
],
"SharedSize": -1,
"Size": 67196705,
"VirtualSize": 67196705
},
{
"Containers": -1,
"Created": 1608472820,
"Id": "sha256:25500204dfbea42059fc77100177de2c5d92cd4219ca6437831bfc26c53b628c",
"Labels": null,
"ParentId": "",
"RepoDigests": [
"opencti/connector-export-file-csv@sha256:d36ba9933590e3ade436fefa790fe03918a561cc69a944b473fc8eac5ca580f0"
],
"RepoTags": [
"opencti/connector-export-file-csv:4.0.3"
],
"SharedSize": -1,
"Size": 66382884,
"VirtualSize": 66382884
},
{
"Containers": -1,
"Created": 1608472784,
"Id": "sha256:42efb539088b86558557e24c10d00810014e5e820f0d7ac8bb8d0fd3981a0bda",
"Labels": null,
"ParentId": "",
"RepoDigests": [
"opencti/connector-export-file-stix@sha256:3f0d74c5c77295edff0e7bb8ff7fa67db496c9f851b52643d705a0044d0fd67b"
],
"RepoTags": [
"opencti/connector-export-file-stix:4.0.3"
],
"SharedSize": -1,
"Size": 66377600,
"VirtualSize": 66377600
},
{
"Containers": -1,
"Created": 1608472749,
"Id": "sha256:51afb662d3c993510447e431e3da8495140690cb9c1ca93c7cf19424a63ce223",
"Labels": null,
"ParentId": "",
"RepoDigests": [
"opencti/connector-import-file-pdf-observables@sha256:1f778d9cfb81b3f1d7e4456b9123022dca285da4bd5431360035dd13ec23e9ca"
],
"RepoTags": [
"opencti/connector-import-file-pdf-observables:4.0.3"
],
"SharedSize": -1,
"Size": 114490806,
"VirtualSize": 114490806
},
{
"Containers": -1,
"Created": 1608472472,
"Id": "sha256:cfd88d87460e5c1e0d7c82ee58258208c80d8acbd9417afe2f7cea10bfef4dd9",
"Labels": null,
"ParentId": "",
"RepoDigests": [
"opencti/connector-import-file-stix@sha256:2e43819b4d1ef5f4de3a74382e5334e52647100553ea1b411a5bad87fa9e2984"
],
"RepoTags": [
"opencti/connector-import-file-stix:4.0.3"
],
"SharedSize": -1,
"Size": 66375700,
"VirtualSize": 66375700
},
{
"Containers": -1,
"Created": 1608200626,
"Id": "sha256:dca5e1ed7218f3145b4414b6599a8aec9385857664bd6cc928ea9fba26febf3f",
"Labels": null,
"ParentId": "",
"RepoDigests": [
"opencti/platform@sha256:183a3c085644615eab322d9d460d875c4d6b3f4c03bd5c4bac3e467771c79bdf"
],
"RepoTags": [
"opencti/platform:4.0.2",
"opencti/platform:latest"
],
"SharedSize": -1,
"Size": 718413368,
"VirtualSize": 718413368
},
{
"Containers": -1,
"Created": 1608165887,
"Id": "sha256:1ecd87fb78edc5feada026b0f926bcf7458eb9c80db8100618e1df725645540e",
"Labels": null,
"ParentId": "",
"RepoDigests": [
"rabbitmq@sha256:849677f6903921038a4541dd907e48a7d0e64a4cea63302acd73f9ee208789ce"
],
"RepoTags": [
"rabbitmq:3.8-management"
],
"SharedSize": -1,
"Size": 197693093,
"VirtualSize": 197693093
},
{
"Containers": -1,
"Created": 1608160149,
"Id": "sha256:959fcab9b1e95d6d7ec1fc4c25491dd7e8cf43aed7346e089d2b564f83cbf58b",
"Labels": {
"maintainer": "ownCloud DevOps <devops@owncloud.com>",
"org.label-schema.build-date": "2020-12-16T23:07:14Z",
"org.label-schema.name": "ownCloud Server",
"org.label-schema.schema-version": "1.0",
"org.label-schema.vcs-ref": "6da3457d723a5ffee6bc0eea945e0ba3fdbd629b",
"org.label-schema.vcs-url": "https://github.com/owncloud-docker/server.git",
"org.label-schema.vendor": "ownCloud GmbH"
},
"ParentId": "",
"RepoDigests": [
"owncloud/server@sha256:e5be595c31734b25133c69aec27c32e87fe011201540b940f1acbd629f910691"
],
"RepoTags": [
"owncloud/server:latest"
],
"SharedSize": -1,
"Size": 1363203435,
"VirtualSize": 1363203435
},
{
"Containers": -1,
"Created": 1607763909,
"Id": "sha256:f1a30c1dd760a7927d12a559c55fcf6ccb7efbbe79295ecc9394b7e4fe21d216",
"Labels": {
"architecture": "x86_64",
"build-date": "2020-10-31T05:07:05.471303",
"com.redhat.build-host": "cpt-1002.osbs.prod.upshift.rdu2.redhat.com",
"com.redhat.component": "ubi8-minimal-container",
"com.redhat.license_terms": "https://www.redhat.com/en/about/red-hat-end-user-license-agreements#UBI",
"description": "MinIO object storage is fundamentally different. Designed for performance and the S3 API, it is 100% open-source. MinIO is ideal for large, private cloud environments with stringent security requirements and delivers mission-critical availability across a diverse range of workloads.",
"distribution-scope": "public",
"io.k8s.description": "The Universal Base Image Minimal is a stripped down image that uses microdnf as a package manager. This base image is freely redistributable, but Red Hat only supports Red Hat technologies through subscriptions for Red Hat products. This image is maintained by Red Hat and updated regularly.",
"io.k8s.display-name": "Red Hat Universal Base Image 8 Minimal",
"io.openshift.expose-services": "",
"io.openshift.tags": "minimal rhel8",
"maintainer": "MinIO Inc <dev@min.io>",
"name": "MinIO",
"release": "RELEASE.2020-11-25T22-36-25Z",
"summary": "MinIO is a High Performance Object Storage, API compatible with Amazon S3 cloud storage service.",
"url": "https://access.redhat.com/containers/#/registry.access.redhat.com/ubi8-minimal/images/8.3-201",
"vcs-ref": "f53dab37c7541dd0080f410727c5886e85c09ee7",
"vcs-type": "git",
"vendor": "MinIO Inc <dev@min.io>",
"version": "RELEASE.2020-11-25T22-36-25Z"
},
"ParentId": "",
"RepoDigests": [
"minio/minio@sha256:a2eeb964863632a274f3eed08fc256b790ca83a020e164dd18e1e5f402d9f8d4"
],
"RepoTags": [
"minio/minio:RELEASE.2020-12-12T08-39-07Z"
],
"SharedSize": -1,
"Size": 182261690,
"VirtualSize": 182261690
},
{
"Containers": -1,
"Created": 1607703900,
"Id": "sha256:ef47f3b6dc11e8f17fb39a6e46ecaf4efd47b3d374e92aeb9f2606896b751251",
"Labels": null,
"ParentId": "",
"RepoDigests": [
"redis@sha256:0f724af268d0d3f5fb1d6b33fc22127ba5cbca2d58523b286ed3122db0dc5381"
],
"RepoTags": [
"redis:6.0.9"
],
"SharedSize": -1,
"Size": 104252176,
"VirtualSize": 104252176
},
{
"Containers": -1,
"Created": 1607130473,
"Id": "sha256:558380375f1a36c20e67c3a0b7bf715c659d75520d0e688b066d5e708918d716",
"Labels": {
"org.label-schema.build-date": "2020-12-05T01:00:33.671820Z",
"org.label-schema.license": "Elastic-License",
"org.label-schema.name": "Elasticsearch",
"org.label-schema.schema-version": "1.0",
"org.label-schema.url": "https://www.elastic.co/products/elasticsearch",
"org.label-schema.usage": "https://www.elastic.co/guide/en/elasticsearch/reference/index.html",
"org.label-schema.vcs-ref": "1c34507e66d7db1211f66f3513706fdf548736aa",
"org.label-schema.vcs-url": "https://github.com/elastic/elasticsearch",
"org.label-schema.vendor": "Elastic",
"org.label-schema.version": "7.10.1",
"org.opencontainers.image.created": "2020-12-05T01:00:33.671820Z",
"org.opencontainers.image.documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/index.html",
"org.opencontainers.image.licenses": "Elastic-License",
"org.opencontainers.image.revision": "1c34507e66d7db1211f66f3513706fdf548736aa",
"org.opencontainers.image.source": "https://github.com/elastic/elasticsearch",
"org.opencontainers.image.title": "Elasticsearch",
"org.opencontainers.image.url": "https://www.elastic.co/products/elasticsearch",
"org.opencontainers.image.vendor": "Elastic",
"org.opencontainers.image.version": "7.10.1"
},
"ParentId": "",
"RepoDigests": [
"docker.elastic.co/elasticsearch/elasticsearch@sha256:5d8f1962907ef60746a8cf61c8a7f2b8755510ee36bdee0f65417f90a38a0139"
],
"RepoTags": [
"docker.elastic.co/elasticsearch/elasticsearch:7.10.1"
],
"SharedSize": -1,
"Size": 773756675,
"VirtualSize": 773756675
},
{
"Containers": -1,
"Created": 1598864687,
"Id": "sha256:a0a227bf03ddc8b88bbb74b1b84a8a7220c8fa95b122cbde2a7444f32dc30659",
"Labels": null,
"ParentId": "",
"RepoDigests": [
"portainer/portainer-ce@sha256:0ab9d25e9ac7b663a51afc6853875b2055d8812fcaf677d0013eba32d0bf0e0d"
],
"RepoTags": [
"portainer/portainer-ce:latest"
],
"SharedSize": -1,
"Size": 195546824,
"VirtualSize": 195546824
},
{
"Containers": -1,
"Created": 1578014497,
"Id": "sha256:bf756fb1ae65adf866bd8c456593cd24beb6a0a061dedf42b26a993176745f6b",
"Labels": null,
"ParentId": "",
"RepoDigests": [
"hello-world@sha256:1a523af650137b8accdaed439c17d684df61ee4d74feac151b5b337bd29e7eec"
],
"RepoTags": [
"hello-world:latest"
],
"SharedSize": -1,
"Size": 13336,
"VirtualSize": 13336
},
{
"Containers": -1,
"Created": 1573631696,
"Id": "sha256:3f6237885724af871088cfbb9d787ea4aebb37c0565e207e897c7f51ce0ad0ed",
"Labels": {
"maintainer": "Thomas Boerger <thomas@webhippie.de>",
"org.label-schema.build-date": "2019-11-13T07:54:28Z",
"org.label-schema.name": "MariaDB",
"org.label-schema.schema-version": "1.0",
"org.label-schema.vcs-ref": "1e1f1924a0477f837c8a4399467594a0a5c3bada",
"org.label-schema.vcs-url": "https://github.com/dockhippie/mariadb.git",
"org.label-schema.vendor": "Thomas Boerger",
"org.label-schema.version": "latest"
},
"ParentId": "",
"RepoDigests": [
"webhippie/mariadb@sha256:8a2c927529e5fd6238f08f79e3855d90a353e4475481574aa4bf0b90550b5db9"
],
"RepoTags": [
"webhippie/mariadb:latest"
],
"SharedSize": -1,
"Size": 656206898,
"VirtualSize": 656206898
},
{
"Containers": -1,
"Created": 1573631680,
"Id": "sha256:42ab00c664c227dce98aec279e4098cb569084d6597e562dd226c98df32dc058",
"Labels": {
"maintainer": "Thomas Boerger <thomas@webhippie.de>",
"org.label-schema.build-date": "2019-11-13T07:54:26Z",
"org.label-schema.name": "Redis",
"org.label-schema.schema-version": "1.0",
"org.label-schema.vcs-ref": "7b176b8e39cb973ed19aee8243ba63a6e75ffe60",
"org.label-schema.vcs-url": "https://github.com/dockhippie/redis.git",
"org.label-schema.vendor": "Thomas Boerger",
"org.label-schema.version": "latest"
},
"ParentId": "",
"RepoDigests": [
"webhippie/redis@sha256:42f6d51be6a7a5ef6fb672e98507824816566f0b1f89c19b2d585f54e26b2529"
],
"RepoTags": [
"webhippie/redis:latest"
],
"SharedSize": -1,
"Size": 59184716,
"VirtualSize": 59184716
},
{
"Containers": -1,
"Created": 1551262109,
"Id": "sha256:aa50897f28e43c1110328f1b8740a2ad097031e8d2443266e562fe74be1a7a19",
"Labels": {
"maintai