{ "@context": "https://schema.org", "@type": "Organization", "name": "Brainscape", "url": "https://www.brainscape.com/", "logo": "https://www.brainscape.com/pks/images/cms/public-views/shared/Brainscape-logo-c4e172b280b4616f7fda.svg", "sameAs": [ "https://www.facebook.com/Brainscape", "https://x.com/brainscape", "https://www.linkedin.com/company/brainscape", "https://www.instagram.com/brainscape/", "https://www.tiktok.com/@brainscapeu", "https://www.pinterest.com/brainscape/", "https://www.youtube.com/@BrainscapeNY" ], "contactPoint": { "@type": "ContactPoint", "telephone": "(929) 334-4005", "contactType": "customer service", "availableLanguage": ["English"] }, "founder": { "@type": "Person", "name": "Andrew Cohen" }, "description": "Brainscape’s spaced repetition system is proven to DOUBLE learning results! Find, make, and study flashcards online or in our mobile app. Serious learners only.", "address": { "@type": "PostalAddress", "streetAddress": "159 W 25th St, Ste 517", "addressLocality": "New York", "addressRegion": "NY", "postalCode": "10001", "addressCountry": "USA" } }

Docker CLI Cmds Flashcards

(58 cards)

1
Q

Command

A

Description

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

docker attach

A

Attach local standard input, output, and error streams to a running container

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

docker build

A

Build an image from a Dockerfile

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

docker builder

A

Manage builds

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

docker checkpoint

A

Manage checkpoints

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

docker commit

A

Create a new image from a container’s changes

EX: docker commit <> <>

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

docker config

A

Manage Docker configs

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

docker container

A

Manage containers

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

docker context

A

Manage contexts

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

docker cp

A

Copy files/folders between a container and the local filesystem

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

docker create

A

Create a new container

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

docker diff

A

Inspect changes to files or directories on a container’s filesystem

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

docker events

A

Get real time events from the server

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

docker exec

A

Run a command in a running container

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

docker export

A

Export a container’s filesystem as a tar archive

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

docker history

A

Show the history of an image

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

docker image

A

Manage images

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

docker images

A

List images

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

docker import

A

Import the contents from a tarball to create a filesystem image

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

docker info

A

Display system-wide information

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

docker inspect

A

Return low-level information on Docker objects

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

docker kill

A

Kill one or more running containers

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

docker load

A

Load an image from a tar archive or STDIN

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

docker login

A

Log in to a Docker registry

25
docker logout
Log out from a Docker registry
26
docker logs
Fetch the logs of a container
27
docker manifest
Manage Docker image manifests and manifest lists
28
docker network
Manage networks
29
docker node
Manage Swarm nodes
30
docker pause
Pause all processes within one or more containers
31
docker plugin
Manage plugins
32
docker port
List port mappings or a specific mapping for the container
33
docker ps
List containers
34
docker pull
Pull an image or a repository from a registry
35
docker push
Push an image or a repository to a registry
36
docker rename
Rename a container
37
docker restart
Restart one or more containers
38
docker rm
Remove one or more containers
39
docker rmi
Remove one or more images
40
docker run
Run a command in a new container. | Converts an image into a container.
41
docker save
Save one or more images to a tar archive (streamed to STDOUT by default)
42
docker search
Search the Docker Hub for images
43
docker secret
Manage Docker secrets
44
docker service
Manage services
45
docker stack
Manage Docker stacks
46
docker start
Start one or more stopped containers
47
docker stats
Display a live stream of container(s) resource usage statistics
48
docker stop
Stop one or more running containers
49
docker swarm
Manage Swarm
50
docker system
Manage Docker
51
docker tag
Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE
52
docker top
Display the running processes of a container
53
docker trust
Manage trust on Docker images
54
docker unpause
Unpause all processes within one or more containers
55
docker update
Update configuration of one or more containers
56
docker version
Show the Docker version information
57
docker volume
Manage volumes
58
docker wait
Block until one or more containers stop, then print their exit codes