가장 많이 묻는 면접 질문과 답변 & 온라인 테스트
면접 준비, 온라인 테스트, 튜토리얼, 라이브 연습을 위한 학습 플랫폼

집중 학습 경로, 모의고사, 면접 준비 콘텐츠로 실력을 키우세요.

WithoutBook은 주제별 면접 질문, 온라인 연습 테스트, 튜토리얼, 비교 가이드를 하나의 반응형 학습 공간으로 제공합니다.

Prepare Interview

Docker 면접 질문과 답변

Ques 16. How can you limit the resources (CPU, memory) a container can use?

Docker allows resource constraints to be set using the `--cpu` and `--memory` options when running a container.

Example:

docker run --cpu=0.5 --memory=512m my_image

도움이 되었나요? Add Comment View Comments
 

Ques 17. What is the purpose of Docker Swarm?

Docker Swarm is a native clustering and orchestration solution for Docker. It allows you to create and manage a swarm of Docker nodes, making it easy to scale and manage applications.

도움이 되었나요? Add Comment View Comments
 

Ques 18. How do you remove a Docker image?

You can use the `docker rmi` command followed by the image ID or name to remove a Docker image.

Example:

docker rmi image_name

도움이 되었나요? Add Comment View Comments
 

Ques 19. What is the purpose of Docker Compose volumes?

Docker Compose volumes allow data to persist between container restarts. They are specified in the `docker-compose.yml` file and are used for sharing data between services.

Example:

volumes:
  - data_volume:/app/data

도움이 되었나요? Add Comment View Comments
 

Ques 20. Explain the concept of Docker Swarm Services.

Docker Swarm Services define how containers should behave in production. They enable scaling, rolling updates, and load balancing across a swarm.

Example:

docker service create --replicas 3 my_image

도움이 되었나요? Add Comment View Comments
 

Most helpful rated by users:

Copyright © 2026, WithoutBook.