Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
shclub committed Jul 12, 2022
1 parent 908198c commit 5188c09
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,13 @@

- Docker 이해 및 활용
- GitHub , Docker 계정 생성 , Jenkins Pipeline 생성하여 CI 실습
- Swagger 설명
- 샘플 소스 : [ 소스 보기 ](https://github.com/shclub/edu2)

<br/>

2. Chapter 2 : 2시간 ( [가이드 문서보기](./chapter2.md) )

- Github Action , workflow 사용 ( GoodBye Jenkins )
- Docker Compose 설치 및 활용 ( DB 연동 )
- 샘플 소스 : [ 소스 보기 ](https://github.com/shclub/edu1)


<br/>

Expand Down
12 changes: 11 additions & 1 deletion chapter1.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,17 @@ if __name__ == '__main__':
```

<br/>
아래 명령어를 사용하여 도커 파일을 생성한다.

git 명령어를 사용하여 서버에 commit 하고 push 한다.

```bash
git add .
git commit -m "first commit"
git push -u origin master
```
<br/>

이제 아래 명령어를 사용하여 도커 이미지를 생성한다.
Dockerfile 위치와 같은 폴더에서 실행하여야 하며 생성할 이미지 이름 뒤에 . 을 반드시 사용한다.

```bash
Expand Down

0 comments on commit 5188c09

Please sign in to comment.