Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions README.ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,25 @@

## 빠른 시작

**[create-starter](https://github.com/starter-series/create-starter) 사용** (권장):

```bash
npx @starter-series/create my-service --template docker-deploy
cd my-service
# 내 앱 Dockerfile + 코드 추가 후:
docker compose up
```

**또는 직접 clone:**

```bash
git clone https://github.com/starter-series/docker-deploy-starter my-service
cd my-service
docker compose up
```

**전체 셋업 (내 앱 가져오기):**

```bash
# 1. GitHub에서 "Use this template" 클릭 (또는 clone)
git clone https://github.com/starter-series/docker-deploy-starter.git my-app
Expand Down
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,25 @@ Build your app. Push to deploy.

## Quick Start

**Via [create-starter](https://github.com/starter-series/create-starter)** (recommended):

```bash
npx @starter-series/create my-service --template docker-deploy
cd my-service
# Add your app's Dockerfile + code, then:
docker compose up
```

**Or clone directly:**

```bash
git clone https://github.com/starter-series/docker-deploy-starter my-service
cd my-service
docker compose up
```

**Full setup (bring your own app):**

```bash
# 1. Click "Use this template" on GitHub (or clone)
git clone https://github.com/starter-series/docker-deploy-starter.git my-app
Expand Down
Loading