docker-curriculum
:dolphin: A comprehensive tutorial on getting started with Docker!
파일 탐색기
최종 버전 다운로드 (.zip)- devcontainer.json
- bug_report.md
- feature_request.md
- typo---grammatical-error---spelling-mistakes-etc-.md
- 01-current-hero.png
- 01-homepage.png
- 02-current-paths-footer.png
- 02-paths-roadmap.png
- 03-updated-hero.png
- 04-updated-cards.png
- review.md
- index.html
- app.py
- Dockerfile
- Dockerrun.aws.json
- requirements.txt
- codespaces-docker.png
- codespaces.png
- copy-code.js
- favicon.svg
- catgif.png
- catgif.webp
- cluster.png
- cluster.webp
- eb-deploy.png
- eb-deploy.webp
- eb-docker.jpeg
- eb-docker.webp
- eb-start.png
- eb-start.webp
- eb-terminate.jpg
- eb-terminate.webp
- foodtrucks.png
- foodtrucks.webp
- houston.webp
- interest.png
- interest.webp
- keypair.png
- keypair.webp
- logo-medium.png
- logo-small.png
- logo.png
- logo.webp
- logo_192.png
- logo_512.png
- static.png
- static.webp
- tasks.png
- tasks.webp
- Quiz.astro
- ThemeProvider.astro
- ThemeSelect.astro
- 00-conclusion.md
- 01-next-steps.md
- 02-give-feedback.md
- 00-getting-started.md
- 01-prerequisites.md
- 02-setting-up.md
- 03-quiz.mdx
- 00-busybox.md
- 01-docker-run.md
- 02-terminlogy.md
- 03-quiz.mdx
- 00-docker.md
- 01-what-are-containers.md
- 02-why-use-containers.md
- 03-what-will-i-learn.md
- 04-quiz.mdx
- 00-introduction.md
- 01-multi-stage-builds.md
- 02-buildkit-and-multi-platform.md
- 03-compose-watch.md
- 04-container-security.md
- 05-quiz.mdx
- 00-introduction.md
- 01-foodtrucks.md
- 02-docker-network.md
- 03-docker-compose.md
- 04-development-workflow.md
- 05-aws-elastic-container-service.md
- 06-quiz.mdx
- 00-static-sites.md
- 01-docker-images.md
- 02-our-first-image.md
- 03-dockerfile.md
- 04-docker-on-aws.md
- 05-quiz.mdx
- index.mdx
- themes.ts
- custom.css
- design.css
- content.config.ts
- env.d.ts
- .gitignore
- astro.config.mjs
- package-lock.json
- package.json
- README.md
- tsconfig.json
- normalize.css
- skeleton.css
- favicon.png
- index.html
- Dockerfile
- wrapper.sh
- .firebaserc
- .gitignore
- design-qa-chapter-blueprint.png
- design-qa-chapter-styled.png
- design-qa-chapter.png
- design-qa-comparison.png
- design-qa-footer-view.png
- design-qa-footer.png
- design-qa-header.png
- design-qa-home-fullwidth.png
- design-qa-home.png
- design-qa-no-toc.png
- design-qa-theme-dialog.png
- design-qa.md
- LICENSE
- netlify.toml
- package-lock.json
- package.json
- README.md
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/prakhar1989/docker-curriculum
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd docker-curriculum
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. Docker
쉬움 추천사전 준비물
- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Docker Desktop 컨테이너를 빌드하고 실행하려면 필요합니다. 설치 후 실행해서 백그라운드에 켜두세요.
docker build -f flask-app/Dockerfile -t docker-curriculum .
Dockerfile을 기반으로 실행 가능한 이미지를 빌드합니다.
docker run -p 8080:80 docker-curriculum
빌드된 이미지를 실제 컨테이너로 실행합니다.
터미널에 docker compose ps 를 입력해 컨테이너들이 Up 상태인지 확인하세요. README에 포트 번호가 적혀있다면 브라우저에서 http://localhost:포트번호 로 접속해보세요.
3. Node.js
쉬움사전 준비물
npm install
package.json에 명시된 라이브러리들을 내려받아 설치합니다.
npm start
개발/실행 서버를 켭니다.
명령어 실행 후 터미널에 나타나는 주소(보통 http://localhost:3000 형태)를 브라우저에서 열어보세요.
4. Python
쉬움사전 준비물
pip install -r flask-app/requirements.txt
requirements.txt 등에 명시된 파이썬 라이브러리를 설치합니다.
python <실행할 파일명>.py # README에서 정확한 실행 파일명을 확인하세요
파이썬 스크립트(또는 모듈)를 실행합니다.
에러 메시지 없이 실행되고 터미널에 안내 문구가 출력되면 정상입니다.
// repository documentation
Was this content helpful?
(0 ratings)
