Skip to content

Commit a1dc4c6

Browse files
committed
docs: Github 및 Docker 튜토리얼 인트로페이지 추가 및 목차 업데이트
1 parent 05b3ab1 commit a1dc4c6

4 files changed

Lines changed: 78 additions & 27 deletions

File tree

book/_toc.yml

Lines changed: 27 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,30 @@
11
format: jb-book
22
root: intro
33

4-
parts:
5-
- caption: "Github 저장소 프로필 업데이트하기"
6-
chapters:
7-
- file: docs/pull_request_guide
8-
title: "Github 파일 편집기로 작업하기"
9-
- file: docs/pr-guide
10-
title: "Github.dev 편집기로 작업하기"
11-
- file: docs/pr-ground
12-
title: "직접해보기"
13-
14-
- caption: "나만의 local ChatGPT 만들기: Docker 실습 튜토리얼"
15-
chapters:
16-
- file: docker_tutorial/00.pytorch_example
17-
title: "Pytorch example"
18-
- file: docker_tutorial/01.what_is_docker
19-
title: "Docker란 무엇인가?"
20-
- file: docker_tutorial/02.image_and_container
21-
title: "Docker 기본 명령어 실습"
22-
- file: docker_tutorial/03.docker-compose
23-
title: "Docker Compose 개념 & 실습"
24-
- file: docker_tutorial/04.ollama
25-
title: "Ollama로 로컬 LLM 실행"
26-
- file: docker_tutorial/05.webui
27-
title: "Open-WebUI 실행"
28-
- file: docker_tutorial/06.ollama_and_webui
29-
title: "Ollama + WebUI (Docker Compose)"
4+
chapters:
5+
- file: docs/github_intro.md
6+
title: "Github 저장소 프로필 업데이트하기"
7+
sections:
8+
- file: docs/pull_request_guide
9+
title: "Github 파일 편집기로 작업하기"
10+
- file: docs/pr-guide
11+
title: "Github.dev 편집기로 작업하기"
12+
- file: docs/pr-ground
13+
title: "직접해보기"
14+
- file: docker_tutorial/00.docker_intro.md
15+
title: "나만의 local ChatGPT 만들기: Docker 실습 튜토리얼"
16+
sections:
17+
- file: docker_tutorial/00.pytorch_example
18+
title: "Pytorch example"
19+
- file: docker_tutorial/01.what_is_docker
20+
title: "Docker란 무엇인가?"
21+
- file: docker_tutorial/02.image_and_container
22+
title: "Docker 기본 명령어 실습"
23+
- file: docker_tutorial/03.docker-compose
24+
title: "Docker Compose 개념 & 실습"
25+
- file: docker_tutorial/04.ollama
26+
title: "Ollama로 로컬 LLM 실행"
27+
- file: docker_tutorial/05.webui
28+
title: "Open-WebUI 실행"
29+
- file: docker_tutorial/06.ollama_and_webui
30+
title: "Ollama + WebUI (Docker Compose)"
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# 나만의 local ChatGPT 만들기: Docker 실습 튜토리얼
2+
3+
PseudoLab 빌더와 러너를 위한 Docker 실습 튜토리얼 페이지입니다.
4+
5+
이 튜토리얼은 [PseudoLab Docker 실습 워크샵](https://lu.ma/bwypwh0p)에서 진행된 내용을 바탕으로 작성되었습니다.
6+
실습형 튜토리얼을 통해 Docker의 기본 개념부터 실제 AI 서비스 구축까지 단계별로 학습할 수 있습니다.
7+
8+
이 튜토리얼에서는 Docker를 활용하여 로컬 환경에서 ChatGPT와 같은 AI 서비스를 구축하는 방법을 단계별로 학습합니다:
9+
1. Docker의 기본 개념과 필요성 이해하기
10+
2. Docker 기본 명령어를 통한 실습
11+
3. Docker Compose를 활용한 서비스 구성
12+
4. Ollama를 통한 로컬 LLM 실행
13+
5. Open WebUI를 통한 AI 대화 인터페이스 구축
14+
6. 실제 프로젝트 실습
15+
16+
각 단계별로 상세한 가이드와 실습 예제를 제공하며, 최종적으로는 나만의 로컬 AI 서비스를 구축할 수 있습니다.
17+
18+
## 목차
19+
20+
- [Pytorch example](docker_tutorial/00.pytorch_example.md)
21+
- [Docker란 무엇인가?](docker_tutorial/01.what_is_docker.md)
22+
- [Docker 기본 명령어 실습](docker_tutorial/02.image_and_container.md)
23+
- [Docker Compose 개념 & 실습](docker_tutorial/03.docker-compose.md)
24+
- [Ollama로 로컬 LLM 실행](docker_tutorial/04.ollama.md)
25+
- [Open-WebUI 실행](docker_tutorial/05.webui.md)
26+
- [Ollama + WebUI (Docker Compose)](docker_tutorial/06.ollama_and_webui.md)

book/docs/github_intro.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Github 저장소 프로필 업데이트하기
2+
3+
PseudoLab 빌더와 러너를 위한 튜토리얼 페이지입니다.
4+
5+
이 튜토리얼에서는 PseudoLab 프로젝트를 시작하기 전에 필요한 Github 기본 사용법을 단계별로 학습합니다:
6+
1. Github 저장소 프로필 업데이트 방법
7+
2. Github.dev 편집기를 활용한 코드 작성 방법
8+
3. Github 파일 편집기를 통한 프로젝트 관리 방법
9+
4. 실제 프로젝트 기여 실습
10+
11+
각 단계별로 상세한 가이드를 제공하며, 실습을 통해 직접 경험해볼 수 있습니다.
12+
13+
## 목차
14+
15+
- [Github.dev 편집기로 작업하기](docs/pr-guide.md)
16+
- [Github 파일 편집기로 작업하기](docs/pull_request_guide.md)
17+
- [직접해보기](docs/pr-ground.md)

book/intro.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,11 @@ PseudoLab 빌더와 러너를 위한 튜토리얼 페이지입니다.
88
1. Github 저장소 프로필 업데이트하기 <br>
99
- Github 파일 편집기로 작업하기<br>
1010
- Github.dev 편집기로 작업하기<br>
11-
- 직접해보기
11+
- 직접해보기
12+
13+
2. 나만의 local ChatGPT 만들기: Docker 실습 튜토리얼<br>
14+
- 시작하기<br>
15+
- Pytorch example<br>
16+
- Docker란 무엇인가?<br>
17+
- Docker 기본 명령어 실습<br>
18+
- Docker Compose 개념 & 실습<br>

0 commit comments

Comments
 (0)