# Level101 — Ubuntu Sunucuya Docker Community Edition Kurulumu Nasıl Yapılır?

Merhaba Arkadaşlar

Ubuntu sunucuya docker kurulumu yapmak için aşağıdaki adımları izleyebilirsiniz.

Güncel SH dosyası üzerinden kurulumu kolaylıkla yapabilirsiniz.

Öncelikle yeni bir docker klasörü oluşturup [https://get.docker.com](https://get.docker.com/) içeriğini docker.sh dosyası olarak kaydediyoruz.

```
mkdir docker
cd docker
curl https://get.docker.com -o get-docker.sh
```

Kayıt edilen dosyamızı run ediyoruz.

```
sh get-docker.sh
```

Kurulumları başarıyla tamamladıktan sonra login olduğumuz kullanıcıya docker için izin veriyoruz.

```
sudo usermod -aG docker ${USER}
```

SSH client üzerinden session’ı kapatıp tekrar ssh ile bağlantı kurmanız gerekebilir. Exit komutuyla logout oluyoruz ve tekrar ssh ile login oluyoruz.

```
exit
```

Tebrikler kurulumu başarıyla tamamladınız.

```
docker -v
```

{% embed url="<https://youtu.be/89-FGB6r3FM>" %}

Alternative Ref : <https://link.medium.com/Xsb2Fzgla6>


---

# Agent Instructions: 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:

```
GET https://post.cagdaskarademir.com/2020/level101-ubuntu-sunucuya-docker-community-edition-kurulumu-nasil-yapilir.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
