> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-docs-1917.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# `wandb launch -d` 또는 `wandb job create image`는 전체 Docker 아티팩트를 업로드하고 레지스트리에서 가져오지 않나요?

아니요, `wandb launch -d` 명령어는 이미지를 레지스트리에 업로드하지 않습니다. 이미지는 별도로 레지스트리에 업로드하세요. 다음 단계를 따르세요:

1. 이미지를 빌드합니다.
2. 이미지를 레지스트리에 푸시합니다.

워크플로는 다음과 같습니다:

```bash theme={null}
docker build -t <repo-url>:<tag> .
docker push <repo-url>:<tag>
wandb launch -d <repo-url>:<tag>
```

그러면 Launch 에이전트가 지정된 컨테이너를 가리키는 작업을 시작합니다. 컨테이너 레지스트리에서 이미지를 가져올 수 있도록 에이전트 액세스를 설정하는 예시는 [고급 에이전트 설정](/ko/platform/launch/setup-agent-advanced/#agent-configuration)을 참조하세요.

Kubernetes의 경우 Kubernetes 클러스터의 파드가 이미지가 푸시된 레지스트리에 액세스할 수 있어야 합니다.
