> For the complete documentation index, see [llms.txt](https://www.opencloudengine.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.opencloudengine.org/undefined-1/docker-repository.md).

# Docker Repository

OpenCloudEngine은 자체 테스트를 위해서 Docker Registry를 가지고 있습니다.

Docker Registry에 image를  push하기 위해서 `/etc/docker/daemon.json` 파일을 다음과 같이 작성하고 docker를 재시작합니다.

```json
{
  "registry-mirrors":["http://docker.opencloudengine.org:80"],
  "insecure-registries":["http://docker.opencloudengine.org:80"]
}
```

이미지를 Push하기 위해서 다음의 커맨드를 실행합니다.

```
# docker login http://docker.opencloudengine.org
 
# docker pull hello-world                                                                                                                                                          ✔  Using default tag: latest
latest: Pulling from library/hello-world
2db29710123e: Pull complete
Digest: sha256:6e8b6f026e0b9c419ea0fd02d3905dd0952ad1feea67543f525c73a0a790fefb
Status: Downloaded newer image for hello-world:latest
docker.io/library/hello-world:latest
 
# docker tag hello-world docker.opencloudengine.org:80/hello-world                                                                                                             
 
# docker push  docker.opencloudengine.org:80/hello-world                                                                                                                         1 ✘ 
Using default tag: latest
The push refers to repository [docker.opencloudengine.org:80/hello-world]
e07ee1baac5f: Pushed
latest: digest: sha256:f54a58bc1aac5ea1a25d796ae155dc228b3f0e11d046ae276b39c4bf2f13d8c4 size: 525
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://www.opencloudengine.org/undefined-1/docker-repository.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
