Containers Security Flashcards

1
Q

Docker Container

A

Shares OS Kernel
Isolated application platform
Runnable instance of an image
Create, start, stop, move, or delete a container using Docker API/CLI
True identifier for the container is CONTAINER ID.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Docker Image

A

Docker image as the recipe for a cake, and a container as a cake you baked from it.

Docker image typically specifies

  • External image to use as the base for the container
  • Commands to run when the container starts
  • File system setup process within the container
  • Instructions for ports and data imports
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Container Tools

A
  • Docker Image
  • Docker Registry
    - User Local Repository
    - Public Repository
  • Docker Client
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Docker Toolbox

A
  • Docker Client
  • Compose (MAC)
  • Kitematic
  • Machine
  • Virtual Box
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Docker Hub

A

Github like Image repository

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Docker CLI

A
docker build
docker pull
docker run
docker pause
docker kill
docker stop
docker image ls
docker container ls
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Docker Host

A

Docker_Host

  • Docker Daemon
  • Container
  • Docker Images (dockerfile)

Also connection to Registry

How well did you know this?
1
Not at all
2
3
4
5
Perfectly