Docker

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/6

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 6:25 AM on 3/10/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

7 Terms

1
New cards

List docker images

docker images/docker image ls

2
New cards

List running/stopped containers

  • docker ps

  • docker ps -a

3
New cards

Create and run container.

docker run -d —rm —name <container-name> -p <host port:container port> <image>

4
New cards

Step into running container terminal

docker exec -it <container> sh

5
New cards

How to delete image/running container

  • docker rm -f <container> // stop and remove

  • docker rmi <img>

6
New cards

The command that builds custom image from Dockerfile

docker build <path-to-Dockerfile-directory> -t <name:tag>

7
New cards

Create a Dockerfile with the postgres image, add persistence to data.

FROM postgres

WORKDIR app

COPY ./init.sql .

# Set environment variables

ENV POSTGRES_DB=app

ENV POSTGRES_USER=appuser

ENV POSTGRES_PASSWORD=apppassword

# Expose default Postgres port

EXPOSE 5432

VOLUME /var/lib/postgresql/data

CMD [“postgres“]

Explore top notes

note
Shakespeare
Updated 946d ago
0.0(0)
note
Memory
Updated 1089d ago
0.0(0)
note
Supply Chain Test #2
Updated 720d ago
0.0(0)
note
Unit 2: Poetry I
Updated 1082d ago
0.0(0)
note
Unit 2 Ap psych review
Updated 324d ago
0.0(0)
note
Shakespeare
Updated 946d ago
0.0(0)
note
Memory
Updated 1089d ago
0.0(0)
note
Supply Chain Test #2
Updated 720d ago
0.0(0)
note
Unit 2: Poetry I
Updated 1082d ago
0.0(0)
note
Unit 2 Ap psych review
Updated 324d ago
0.0(0)

Explore top flashcards

flashcards
Chapter 5 - Language
31
Updated 1197d ago
0.0(0)
flashcards
WWII Terms
20
Updated 782d ago
0.0(0)
flashcards
Chapter 12-Latin
50
Updated 860d ago
0.0(0)
flashcards
Study Hints for Unit 3
32
Updated 494d ago
0.0(0)
flashcards
APUSH AP ExamVocab
314
Updated 1061d ago
0.0(0)
flashcards
Supply Chain Management MidTerm
34
Updated 904d ago
0.0(0)
flashcards
4.2
70
Updated 973d ago
0.0(0)
flashcards
2B Verbos -car, -gar, -zar
41
Updated 1084d ago
0.0(0)
flashcards
Chapter 5 - Language
31
Updated 1197d ago
0.0(0)
flashcards
WWII Terms
20
Updated 782d ago
0.0(0)
flashcards
Chapter 12-Latin
50
Updated 860d ago
0.0(0)
flashcards
Study Hints for Unit 3
32
Updated 494d ago
0.0(0)
flashcards
APUSH AP ExamVocab
314
Updated 1061d ago
0.0(0)
flashcards
Supply Chain Management MidTerm
34
Updated 904d ago
0.0(0)
flashcards
4.2
70
Updated 973d ago
0.0(0)
flashcards
2B Verbos -car, -gar, -zar
41
Updated 1084d ago
0.0(0)