
Docker adalah suatu aplikasi yang menyederhanakan proses pengelolaan proses aplikasi di dalam kontainer. Kontainer memungkinkan Anda menjalankan aplikasi di dalam proses yang terisolasi sumber daya. Kontainer mirip seperti mesin virtual, tetapi kontainer lebih portabel, lebih ramah sumber daya, dan lebih bergantung pada sistem operasi hos.
Untuk pengantar mendetail tentang beragam komponen berbeda dari kontainer Docker, silakan baca The Docker Ecosystem: An Introduction to Common Components.
Dalam tutorial ini, Anda akan menginstal dan menggunakan Docker Community Edition (CE) pada Ubuntu 20.04. Anda akan menginstal Docker sendiri, bekerja dengan kontainer dan citra, serta mendorong citra ke Repositori Docker.
Prasyarat
Untuk mengikuti tutorial ini, Anda membutuhkan hal berikut ini:
- Satu server Ubuntu 20.04 yang disiapkan dengan mengikuti panduan penyiapan server awal Ubuntu 20.04 berikut ini, termasuk penggguna non-root sudo dan firewall.
- Satu akun di Docker Hub jika Anda ingin menciptakan citra sendiri dan mendorongnya ke Docker Hub, seperti yang diperlihatkan dalam Langkah 7 dan 8.
Langkah 1 — Menginstal Docker
Paket instalasi Docker yang tersedia di repositori Ubuntu resmi mungkin bukan versi terbaru. Untuk memastikan kita mendapat versi terbaru, kita akan menginstal Docker dari repositori Docker resmi. Untuk melakukan itu, kita akan menambah satu sumber paket baru, menambah kunci GPG dari Docker untuk memastikan unduhannya valid, lalu menginstal paket itu.
Pertama, perbarui daftar paket Anda saat ini:
Selanjutnya, instal beberapa paket prasyarat yang memungkinkan apt
menggunakan paket lewat HTTPS:
Lalu tambahkan kunci GPG untuk repositori Docker resmi ke sistem Anda:
Tambahkan repositori Docker ke sumber APT:
Selanjutnya, perbarui basis data paket dengan paket Docker dari repo yang baru ditambahkan:
Pastikan Anda akan menginstal dari repo Docker alih-alih repo Ubuntu asali:
Anda akan melihat keluaran seperti ini, meskipun nomor versi untuk Docker mungkin berbeda:
docker-ce: Installed: (none) Candidate: 5:19.03.9~3-0~ubuntu-focal Version table: 5:19.03.9~3-0~ubuntu-focal 500 500 https://download.docker.com/linux/ubuntu focal/stable amd64 Packages
Perhatikan bahwa docker-ce
belum terinstal, tetapi kandidat untuk instalasi adalah dari repositori Docker untuk Ubuntu 20.04 (focal
).
Akhirnya, instal Docker:
Docker kini seharusnya sudah terinstal, daemon dimulai, dan prosesnya kini dapat berjalan ketika memulai saat boot. Periksa bahwa ini berjalan:
Keluaran harus mirip dengan yang berikut ini, yang menunjukkan bahwa layanan sudah aktif dan berjalan:
Output● docker.service - Docker Application Container Engine Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled) Active: active (running) since Tue 2020-05-19 17:00:41 UTC; 17s agoTriggeredBy: ● docker.socket Docs: https://docs.docker.com Main PID: 24321 (dockerd) Tasks: 8 Memory: 46.4M CGroup: /system.slice/docker.service └─24321 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock
Menginstal Docker kini tidak hanya memberi Anda layanan Docker (daemon) tetapi juga utilitas baris perintah docker
, atau klien Docker. Kita akan menjelajahi cara menggunakan perintah docker
di dalam tutorial ini nanti.
Langkah 2 — Mengeksekusi Perintah Docker Tanpa Sudo (Opsional)
Secara asali, perintah docker
hanya dapat dijalankan pengguna root atau oleh pengguna di dalam grup docker yang tercipta secara otomatis selama proses instalasi Docker. Jika Anda mencoba menjalankan perintah docker
tanpa mengawalinya dengan sudo
atau tanpa berada di dalam grup docker, Anda akan mendapat keluaran seperti ini:
Outputdocker: Cannot connect to the Docker daemon. Is the docker daemon running on this host?.See 'docker run --help'.
Jika Anda ingin menghindari untuk mengetik sudo
setiap kali Anda menjalankan perintah docker
, tambahkan nama pengguna Anda ke grup docker
:
Untuk menerapkan keanggotaan grup baru, lakukan log keluar dari server dan masuk kembali, atau ketik yang berikut ini:
Anda akan diminta untuk memasukkan kata sandi pengguna Anda untuk melanjutkan.
Konfirmasikan bahwa pengguna Anda kini sudah ditambahkan ke grup docker dengan mengetik:
Outputsammy sudo docker
Jika Anda perlu menambahkan seorang pengguna ke grup docker
yang Anda sedang tidak sedang log masuk di dalamnya, deklarasikan nama pengguna secara eksplisit menggunakan:
Mulai dari sekarang, artikel ini mengasumsikan bahwa Anda menjalankan perintah docker
sebagai pengguna di dalam grup docker. Jika Anda memilih untuk tidak melakukan itu, silakan sisipkan perintah dengan awalan sudo
.
Mari kita jelajahi perintah docker
berikutnya.
Langkah 3 — Menggunakan Perintah Docker
Menggunakan docker
terdiri dari memberikannya serangkaian opsi dan perintah yang diikuti oleh argumen. Sintaksnya berbentuk seperti ini:
Untuk melihat semua subperintah yang tersedia, ketik:
Mulai dari Docker 19, daftar lengkap subperintah yang tersedia termasuk:
Output attach Attach local standard input, output, and error streams to a running container build Build an image from a Dockerfile commit Create a new image from a container's changes cp Copy files/folders between a container and the local filesystem create Create a new container diff Inspect changes to files or directories on a container's filesystem events Get real time events from the server exec Run a command in a running container export Export a container's filesystem as a tar archive history Show the history of an image images List images import Import the contents from a tarball to create a filesystem image info Display system-wide information inspect Return low-level information on Docker objects kill Kill one or more running containers load Load an image from a tar archive or STDIN login Log in to a Docker registry logout Log out from a Docker registry logs Fetch the logs of a container pause Pause all processes within one or more containers port List port mappings or a specific mapping for the container ps List containers pull Pull an image or a repository from a registry push Push an image or a repository to a registry rename Rename a container restart Restart one or more containers rm Remove one or more containers rmi Remove one or more images run Run a command in a new container save Save one or more images to a tar archive (streamed to STDOUT by default) search Search the Docker Hub for images start Start one or more stopped containers stats Display a live stream of container(s) resource usage statistics stop Stop one or more running containers tag Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE top Display the running processes of a container unpause Unpause all processes within one or more containers update Update configuration of one or more containers version Show the Docker version information wait Block until one or more containers stop, then print their exit codes
Untuk melihat opsi yang tersedia untuk perintah spesifik, ketik:
Untuk melihat informasi keseluruhan sistem tentang Docker, gunakan:
Mari kita jelajahi beberapa dari perintah ini. Kita akan mulai dengan bekerja dengan citra.
Langkah 4 — Bekerja dengan Citra Docker
Kontainer Docker dibangun dari citra Docker. Secara asali, Docker menarik citra ini dari Docker Hub, suatu registri Docker yang dikelola oleh Docker, perusahaan di balik proyek Docker. Siapa pun dapat menjadi hos citra Docker miliknya di Docker Hub, sehingga sebagian besar aplikasi dan distro Linux yang Anda butuhkan akan memiliki citra yang ditempatkan di dalamnya.
Untuk memeriksa apakah Anda dapat mengakses dan mengunduh citra dari Docker Hub, ketik:
Keluaran akan mengindikasikan bahwa Docker bekerja dengan benar:
OutputUnable to find image 'hello-world:latest' locallylatest: Pulling from library/hello-world0e03bdcc26d7: Pull completeDigest: sha256:6a65f928fb91fcfbc963f7aa6d57c8eeb426ad9a20c7ee045538ef34847f44f1Status: Downloaded newer image for hello-world:latestHello from Docker!This message shows that your installation appears to be working correctly....
Docker pada awalnya tidak dapat menemukan citra hello-world
secara lokal, sehingga Docker mengunduh citra dari Docker Hub, yang merupakan repositori asali. Setelah citra diunduh, Docker menciptakan suatu kontainer dari citra dan aplikasi di dalam kontainer yang dieksekusi, yang menampilkan pesan.
Anda dapat mencari citra yang tersedia di Docker Hub dengan menggunakan perintah docker
dengan subperintah search
. Sebagai contoh, untuk mencari citra Ubuntu, ketik:
Skrip ini akan mencari di Docker Hub dan memberi daftar semua citra yang namanya cocok dengan string pencarian. Dalam kasus ini, keluarannya akan mirip seperti ini:
OutputNAME DESCRIPTION STARS OFFICIAL AUTOMATEDubuntu Ubuntu is a Debian-based Linux operating sys… 10908 [OK]dorowu/ubuntu-desktop-lxde-vnc Docker image to provide HTML5 VNC interface … 428 [OK]rastasheep/ubuntu-sshd Dockerized SSH service, built on top of offi… 244 [OK]consol/ubuntu-xfce-vnc Ubuntu container with "headless" VNC session… 218 [OK]ubuntu-upstart Upstart is an event-based replacement for th… 108 [OK]ansible/ubuntu14.04-ansible Ubuntu 14.04 LTS with...
Pada kolom OFFICIAL, OK menandakan citra yang dibuat dan didukung oleh perusahaan yang ada di balik proyek ini. Setelah Anda mengidentifikasi citra yang Anda ingin gunakan, Anda dapat mengunduhnya ke komputer Anda menggunakan subperintah pull
.
Jalankan perintah berikut ini untuk mengunduh citra ubuntu
resmi ke komputer Anda:
Anda akan melihat keluaran berikut ini:
OutputUsing default tag: latestlatest: Pulling from library/ubuntud51af753c3d3: Pull completefc878cd0a91c: Pull complete6154df8ff988: Pull completefee5db0ff82f: Pull completeDigest: sha256:747d2dbbaaee995098c9792d99bd333c6783ce56150d1b11e333bbceed5c54d7Status: Downloaded newer image for ubuntu:latestdocker.io/library/ubuntu:latest
Setelah suatu citra telah diunduh, Anda lalu dapat menjalankan suatu kontainer dengan menggunakan citra yang telah diunduh dengan subperintah run
. Seperti yang Anda lihat dengan contoh hello-world
, jika suatu citra belum diunduh saat docker
dieksekusi dengan subperintah run
, klien Docker akan mengunduh citra terlebih dahulu, lalu menjalankan kontainer dengan menggunakannya.
Untuk melihat citra yang telah diunduh ke komputer Anda, ketik:
Keluaran akan terlihat mirip dengan yang berikut ini:
OutputREPOSITORY TAG IMAGE ID CREATED SIZEubuntu latest 1d622ef86b13 3 weeks ago 73.9MBhello-world latest bf756fb1ae65 4 months ago 13.3kB
Seperti yang Anda nanti lihat di tutorial ini, citra yang Anda gunakan untuk menjalankan kontainer dapat dimodifikasi dan digunakan untuk menghasilkan citra baru, yang mungkin diunggah (didorong adalah istilah teknisnya) ke Docker Hub atau registri Docker lainnya.
Mari kita lihat cara menjalankan kontainer secara lebih mendetail.
Langkah 5 — Menjalankan Kontainer Docker
Kontainer hello-world
yang Anda jalankan di langkah sebelumnya adalah contoh dari kontainer yang berjalan dan keluar setelah menampilkan suatu pesan teks. Kontainer dapat menjadi lebih bermanfaat daripada itu dan dapat menjadi interaktif. Bagaimanapun juga, kontainer mirip dengan mesin virtual, hanya saja lebih ramah sumber daya.
Sebagai contoh, mari kita jalankan kontainer dengan menggunakan citra terbaru dari Ubuntu. Kombinasi dari switch -i dan -t memberi Anda akses shell interaktif ke dalam kontainer:
Prompt perintah Anda harus berubah untuk mencerminkan fakta bahwa Anda kini bekerja di dalam kontainer dan harus berbentuk seperti ini:
Outputroot@d9b100f2f636:/#
Perhatikan id kontainer di dalam prompt perintah. Pada contoh ini, id-nya adalah d9b100f2f636
. Anda akan membutuhkan id kontainer itu untuk mengidentifikasi kontainer ketika Anda ingin menghapusnya.
Sekarang Anda dapat menjalankan perintah apa pun di dalam kontainer. Sebagai contoh, mari kita perbarui basis data paket di dalam kontainer. Anda tidak perlu mengawali perintah dengan sudo
, karena Anda kini beroperasi di dalam kontainer sebagai pengguna root:
Lalu, instal aplikasi apa pun di dalamnya. Mari kita instal Node.js:
Ini menginstal Node.js di dalam kontainer dari repositori Ubuntu resmi. Saat instalasi selesai, pastikan bahwa Node.js sudah terinstal:
Anda akan melihat nomor versi ditampilkan pada terminal Anda:
Outputv10.19.0
Segala perubahan yang Anda buat di dalam kontainer hanya berlaku pada kontainer itu.
Untuk keluar dari kontainer, ketik exit
di prompt.
Selanjutnya, mari kita lihat tentang pengelolaan kontainer di sistem kita.
Langkah 6 — Mengelola Kontainer Docker
Setelah menggunakan Docker selama beberapa waktu, Anda akan memiliki banyak kontainer aktif (berjalan) dan tidak aktif di komputer Anda. Untuk melihat kontainer yang aktif, gunakan:
Anda akan melihat keluaran yang mirip dengan yang berikut ini:
OutputCONTAINER ID IMAGE COMMAND CREATED
Dalam tutorial ini, Anda memulai dua kontainer, satu dari citra hello-word
dan yang lain dari citra ubuntu
. Kedua kontainer tidak lagi berjalan, tetapi masih ada di sistem Anda.
Untuk melihat semua kontainer — aktif dan tidak aktif, jalankan docker ps
dengan switch -a
:
Anda akan melihat keluaran mirip dengan ini:
1c08a7a0d0e4 ubuntu "/bin/bash" 2 minutes ago Exited (0) 8 seconds ago quizzical_mcnultya707221a5f6c hello-world "/hello" 6 minutes ago Exited (0) 6 minutes ago youthful_curie
Untuk melihat kontainer terbaru yang Anda buat, teruskan ke switch -l
:
Untuk memulai kontainer yang telah dihentikan, gunakan docker start
, diikuti dengan id kontainer atau nama kontainer. Mari kita mulai kontainer berbasis Ubuntu dengan ID 1c08a7a0d0e4
:
Kontainer akan memulai, dan Anda dapat menggunakan docker ps
untuk melihat statusnya:
OutputCONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES1c08a7a0d0e4 ubuntu "/bin/bash" 3 minutes ago Up 5 seconds quizzical_mcnulty
Untuk menghentikan suatu kontainer yang sedang berjalan, gunakan docker stop
, diikuti dengan ID atau nama kontainer. Kali ini, kita akan menggunakan nama yang diberikan Docker kepada kontainer, yaitu quizzical_mcnulty
:
Setelah Anda memutuskan bahwa Anda tidak lagi membutuhkan suatu kontainer, hapus kontainer itu dengan perintah docker rm
, dengan kembali menggunakan baik ID atau nama kontainer. Gunakan perintah docker ps -a
untuk menemukan ID atau nama kontainer untuk kontainer yang terkait dengan citra hello-world
dan hapus.
Anda dapat memulai suatu kontainer baru dan memberinya nama dengan menggunakan switch --name
. Anda juga dapat menggunakan switch --rm
untuk menciptakan suatu kontainer yang menghapus dirinya sendiri saat dihentikan. Lihat perintah docker run help
untuk informasi lebih lanjut tentang opsi ini dan lainnya.
Kontainer dapat diubah menjadi citra yang Anda dapat gunakan untuk menciptakan kontainer baru. Mari kita lihat cara kerjanya.
Langkah 7 — Menerapkan Perubahan dalam Kontainer ke Citra Docker
Saat Anda memulai suatu citra Docker, Anda dapat menciptakan, memodifikasi, dan menghapus berkas seperti yang Anda dapat lakukan dengan mesin virtual. Perubahan yang Anda buat hanya akan berlaku untuk kontainer itu. Anda dapat memulai dan menghentikannya, tetapi setelah Anda menghancurkannya dengan perintah docker rm
, perubahan akan hilang selamanya.
Bagian ini menunjukkan kepada Anda cara menyimpan kondisi suatu kontainer sebagai citra Docker baru.
Setelah menginstal Node.js di dalam kontainer Ubuntu, Anda kini memiliki suatu kontainer yang berjalan dari suatu citra, tetapi kontainer ini berbeda dari citra yang Anda gunakan sebelumnya untuk menciptakannya. Tetapi Anda mungkin ingin menggunakan kembali kontainer Node.js ini sebagai dasar untuk citra baru nantinya.
Lalu terapkan perubahan ke instans citra Docker baru dengan menggunakan perintah berikut.
Switch -m adalah untuk pesan penerapan yang membantu Anda dan orang lain untuk mengetahui perubahan yang Anda buat, sedangkan -a digunakan untuk menentukan penulisnya. container_id
adalah hal yang Anda catat sebelumnya dalam tutorial saat Anda memulai sesi Docker interaktif. Kecuali Anda menciptakan repositori tambahan pada Docker Hub, repository
itu biasanya merupakan nama pengguna Docker Hub Anda.
Sebagai contoh, untuk pengguna bernama sammy, dengan ID kontainer d9b100f2f636
, perintahnya adalah:
Saat Anda melakukan commit pada suatu citra, citra baru itu disimpan secara lokal di komputer Anda. Dalam tutorial ini nantinya Anda akan belajar cara mendorong citra ke suatu registri Docker seperti Docker Hub sehingga orang lain dapat mengaksesnya.
Membuat daftar citra Docker kembali akan menampilkan citra baru dan lama yang menjadi rujukan bagi yang baru:
Anda akan melihat keluaran seperti ini:
OutputREPOSITORY TAG IMAGE ID CREATED SIZEsammy/ubuntu-nodejs latest 7c1f35226ca6 7 seconds ago 179MB...
Pada contoh ini, ubuntu-nodejs
adalah citra baru, yang diturunkan dari citra ubuntu
yang sudah ada sebelumnya dari Docker Hub. Perbedaan ukuran mencerminkan perubahan yang dibuat. Dan dalam contoh ini, perubahannya adalah bahwa NodeJS telah diinstal. Jadi, lain kali Anda perlu menjalankan suatu kontainer yang menggunakan Ubuntu dengan NodeJS yang telah diinstal sebelumnya, Anda dapat langsung menggunakan citra baru ini.
Anda juga dapat membangun citra dari suatu Dockerfile
, yang memungkinkan Anda mengotomatiskan instalasi perangkat lunak dalam suatu citra baru. Namun, hal itu berada di luar cakupan tutorial ini.
Sekarang, mari kita berbagi citra baru dengan orang lain sehingga mereka dapat menciptakan kontainer dari citra itu.
Langkah 8 — Mendorong Citra Docker ke Repositori Docker
Langkah logis berikutnya setelah menciptakan citra baru dari citra yang sudah ada adalah membagikannya kepada beberapa teman yang Anda pilih, seluruh dunia di Docker Hub, atau registri Docker lain yang dapat Anda akses. Untuk mendorong suatu citra ke Docker Hub atau registri Docker lain, Anda harus memiliki akun di sana.
Bagian ini menunjukkan kepada Anda cara mendorong suatu citra Docker ke Docker Hub. Untuk mempelajari cara membuat registri Docker pribadi Anda sendiri, bacalah How To Set Up a Private Docker Registry on Ubuntu 14.04.
Langkah pertama untuk mendorong citra Anda adalah dengan melakukan log masuk ke Docker Hub.
Anda akan diminta melakukan autentikasi menggunakan kata sandi Docker Hub Anda. Jika Anda memberikan kata sandi yang benar, autentikasi pasti berhasil.
Catatan: Jika nama pengguna registri Docker Anda berbeda dari nama pengguna lokal yang Anda gunakan untuk menciptakan citra, Anda harus menandai citra Anda dengan nama pengguna registri. Untuk contoh yang diberikan pada langkah terakhir, Anda perlu mengetik:
Lalu, Anda dapat mendorong citra Anda sendiri menggunakan:
Untuk mendorong citra ubuntu-nodejs
ke repositori sammy, perintahnya adalah:
Proses ini mungkin membutuhkan waktu beberapa saat untuk mengunggah citra hingga selesai, tetapi saat selesai, keluaran akan terlihat seperti ini:
OutputThe push refers to a repository [docker.io/sammy/ubuntu-nodejs]e3fbbfb44187: Pushed5f70bf18a086: Pusheda3b5c80a4eba: Pushed7f18b442972b: Pushed3ce512daaf78: Pushed7aae4540b42d: Pushed...
Setelah mendorong citra ke registri, citra akan terdaftar pada dasbor akun Anda, seperti yang ditampilkan dalam gambar di bawah ini.
Jika upaya mendorong menghasilkan kesalahan seperti ini, ada kemungkinan Anda belum log masuk:
OutputThe push refers to a repository [docker.io/sammy/ubuntu-nodejs]e3fbbfb44187: Preparing5f70bf18a086: Preparinga3b5c80a4eba: Preparing7f18b442972b: Preparing3ce512daaf78: Preparing7aae4540b42d: Waitingunauthorized: authentication required
Lakukan log masuk dengan login docker
dan ulangi upaya dorong. Lalu pastikan bahwa citra itu ada di halaman repositori Docker Hub.
Anda sekarang dapat menggunakan docker pull sammy/ubuntu-nodejs
untuk menarik citra itu ke mesin baru dan menggunakannya untuk menjalankan suatu kontainer baru.
Sumber: digitalocean
How to Install and Use Docker on Ubuntu 20.04
Docker is an application that simplifies the process of managing application processes inside containers . Containers allow you to run your application inside a resource isolated process. Containers are like virtual machines, but they are more portable, more resource friendly, and more dependent on the host operating system.
For a detailed introduction to the different components of Docker containers, please read The Docker Ecosystem: An Introduction to Common Components .
In this tutorial, you will install and use Docker Community Edition (CE) on Ubuntu 20.04. You will install Docker yourself, work with containers and images, and push images to the Docker Repository.
Precondition
To follow this tutorial, you will need the following:
- One Ubuntu 20.04 server set up following the following Ubuntu 20.04 initial server setup guide , including non-root sudo user and firewall.
- One account in Docker Hub if you want to create your own images and push them to Docker Hub, as shown in Steps 7 and 8.
Step 1 — Installing Docker
The Docker installation package available in the official Ubuntu repository may not be the latest version. To make sure we get the latest version, we'll install Docker from the official Docker repository. To do that, we'll add a new package source, add the GPG key from Docker to make sure the download is valid, then install the package.
First, update your current package list:
Next, install some prerequisite packages that allow apt
using packets over HTTPS:
Then add the GPG key for the official Docker repository to your system:
Add the Docker repository to the APT sources:
Next, update the package database with the Docker package from the newly added repo:
Make sure you are going to install from the Docker repo instead of the default Ubuntu repo:
You'll see output like this, although the version number for Docker may be different:
Output of apt-cache policy docker-cedocker-ce:
Installed: (none)
Candidate: 5:19.03.9~3-0~ubuntu-focal
Version table:
5:19.03.9~3-0~ubuntu-focal 500
500 https://download.docker.com/linux/ubuntu focal/stable amd64 Packages
Note that docker-ce
it's not installed yet, but the candidate for installation is from the Docker repository for Ubuntu 20.04 ( focal
).
Finally, install Docker:
Docker should now be installed, the daemon started, and the process should now be running when it starts at boot. Check that it's running:
The output should be similar to the following, indicating that the service is up and running:
Output● docker.service - Docker Application Container Engine
Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled)
Active: active (running) since Tue 2020-05-19 17:00:41 UTC; 17s ago
TriggeredBy: ● docker.socket
Docs: https://docs.docker.com
Main PID: 24321 (dockerd)
Tasks: 8
Memory: 46.4M
CGroup: /system.slice/docker.service
└─24321 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock
Installing Docker now gives you not only a Docker service (daemon) but also a command line utility docker
, or Docker client. We'll explore how to use the command docker
later in this tutorial.
apt
using packets over HTTPS:docker-ce:
Installed: (none)
Candidate: 5:19.03.9~3-0~ubuntu-focal
Version table:
5:19.03.9~3-0~ubuntu-focal 500
500 https://download.docker.com/linux/ubuntu focal/stable amd64 Packages
docker-ce
it's not installed yet, but the candidate for installation is from the Docker repository for Ubuntu 20.04 ( focal
).Output● docker.service - Docker Application Container Engine
Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled)
Active: active (running) since Tue 2020-05-19 17:00:41 UTC; 17s ago
TriggeredBy: ● docker.socket
Docs: https://docs.docker.com
Main PID: 24321 (dockerd)
Tasks: 8
Memory: 46.4M
CGroup: /system.slice/docker.service
└─24321 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock
docker
, or Docker client. We'll explore how to use the command docker
later in this tutorial.Step 2 — Executing Docker Commands Without Sudo (Optional)
By default, commands docker
can only be run by the root user or by users in the docker group that was created automatically during the Docker installation process. If you try to run a command docker
without prefixing it with sudo
or without being in the docker group , you will get output like this:
Outputdocker: Cannot connect to the Docker daemon. Is the docker daemon running on this host?.
See 'docker run --help'.
If you want to avoid having to type it sudo
every time you run a command docker
, add your username to the group docker
:
To apply the new group membership, log off the server and log back in, or type the following:
You will be asked to enter your user password to continue.
Confirm that your user is now added to the docker group by typing:
Outputsammy sudo docker
If you need to add a user to a group docker
that you are not currently logged into, declare the username explicitly using:
From now on, this article assumes that you run commands docker
as a user inside the docker group . If you prefer not to do that, please insert the command with the sudo
.
Let's explore the docker
next command.
docker
can only be run by the root user or by users in the docker group that was created automatically during the Docker installation process. If you try to run a command docker
without prefixing it with sudo
or without being in the docker group , you will get output like this:Outputdocker: Cannot connect to the Docker daemon. Is the docker daemon running on this host?.
See 'docker run --help'.
sudo
every time you run a command docker
, add your username to the group docker
:Outputsammy sudo docker
docker
that you are not currently logged into, declare the username explicitly using:docker
as a user inside the docker group . If you prefer not to do that, please insert the command with the sudo
.docker
next command.Step 3 — Using Docker Commands
Using docker
consists of giving it a series of options and commands followed by arguments. The syntax looks like this:
To see all available subcommands, type:
Starting from Docker 19, the full list of available subcommands includes:
Output attach Attach local standard input, output, and error streams to a running container
build Build an image from a Dockerfile
commit Create a new image from a container's changes
cp Copy files/folders between a container and the local filesystem
create Create a new container
diff Inspect changes to files or directories on a container's filesystem
events Get real time events from the server
exec Run a command in a running container
export Export a container's filesystem as a tar archive
history Show the history of an image
images List images
import Import the contents from a tarball to create a filesystem image
info Display system-wide information
inspect Return low-level information on Docker objects
kill Kill one or more running containers
load Load an image from a tar archive or STDIN
login Log in to a Docker registry
logout Log out from a Docker registry
logs Fetch the logs of a container
pause Pause all processes within one or more containers
port List port mappings or a specific mapping for the container
ps List containers
pull Pull an image or a repository from a registry
push Push an image or a repository to a registry
rename Rename a container
restart Restart one or more containers
rm Remove one or more containers
rmi Remove one or more images
run Run a command in a new container
save Save one or more images to a tar archive (streamed to STDOUT by default)
search Search the Docker Hub for images
start Start one or more stopped containers
stats Display a live stream of container(s) resource usage statistics
stop Stop one or more running containers
tag Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE
top Display the running processes of a container
unpause Unpause all processes within one or more containers
update Update configuration of one or more containers
version Show the Docker version information
wait Block until one or more containers stop, then print their exit codes
To see the options available for a specific command, type:
To view system-wide information about Docker, use:
Let's explore some of these commands. We'll start by working with images.
docker
consists of giving it a series of options and commands followed by arguments. The syntax looks like this:Output attach Attach local standard input, output, and error streams to a running container
build Build an image from a Dockerfile
commit Create a new image from a container's changes
cp Copy files/folders between a container and the local filesystem
create Create a new container
diff Inspect changes to files or directories on a container's filesystem
events Get real time events from the server
exec Run a command in a running container
export Export a container's filesystem as a tar archive
history Show the history of an image
images List images
import Import the contents from a tarball to create a filesystem image
info Display system-wide information
inspect Return low-level information on Docker objects
kill Kill one or more running containers
load Load an image from a tar archive or STDIN
login Log in to a Docker registry
logout Log out from a Docker registry
logs Fetch the logs of a container
pause Pause all processes within one or more containers
port List port mappings or a specific mapping for the container
ps List containers
pull Pull an image or a repository from a registry
push Push an image or a repository to a registry
rename Rename a container
restart Restart one or more containers
rm Remove one or more containers
rmi Remove one or more images
run Run a command in a new container
save Save one or more images to a tar archive (streamed to STDOUT by default)
search Search the Docker Hub for images
start Start one or more stopped containers
stats Display a live stream of container(s) resource usage statistics
stop Stop one or more running containers
tag Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE
top Display the running processes of a container
unpause Unpause all processes within one or more containers
update Update configuration of one or more containers
version Show the Docker version information
wait Block until one or more containers stop, then print their exit codes
Step 4 — Working with the Docker Image
Docker containers are built from Docker images. By default, Docker pulls these images from Docker Hub , a Docker registry maintained by Docker, the company behind the Docker project. Anyone can host their Docker image on Docker Hub, so most applications and Linux distros you need will have an image housed within.
Untuk memeriksa apakah Anda dapat mengakses dan mengunduh citra dari Docker Hub, ketik:
Keluaran akan mengindikasikan bahwa Docker bekerja dengan benar:
OutputUnable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
0e03bdcc26d7: Pull complete
Digest: sha256:6a65f928fb91fcfbc963f7aa6d57c8eeb426ad9a20c7ee045538ef34847f44f1
Status: Downloaded newer image for hello-world:latest
Hello from Docker!
This message shows that your installation appears to be working correctly.
...
Docker pada awalnya tidak dapat menemukan citra hello-world
secara lokal, sehingga Docker mengunduh citra dari Docker Hub, yang merupakan repositori asali. Setelah citra diunduh, Docker menciptakan suatu kontainer dari citra dan aplikasi di dalam kontainer yang dieksekusi, yang menampilkan pesan.
Anda dapat mencari citra yang tersedia di Docker Hub dengan menggunakan perintah docker
dengan subperintah search
. Sebagai contoh, untuk mencari citra Ubuntu, ketik:
Skrip ini akan mencari di Docker Hub dan memberi daftar semua citra yang namanya cocok dengan string pencarian. Dalam kasus ini, keluarannya akan mirip seperti ini:
OutputNAME DESCRIPTION STARS OFFICIAL AUTOMATED
ubuntu Ubuntu is a Debian-based Linux operating sys… 10908 [OK]
dorowu/ubuntu-desktop-lxde-vnc Docker image to provide HTML5 VNC interface … 428 [OK]
rastasheep/ubuntu-sshd Dockerized SSH service, built on top of offi… 244 [OK]
consol/ubuntu-xfce-vnc Ubuntu container with "headless" VNC session… 218 [OK]
ubuntu-upstart Upstart is an event-based replacement for th… 108 [OK]
ansible/ubuntu14.04-ansible Ubuntu 14.04 LTS with
...
Pada kolom OFFICIAL, OK menandakan citra yang dibuat dan didukung oleh perusahaan yang ada di balik proyek ini. Setelah Anda mengidentifikasi citra yang Anda ingin gunakan, Anda dapat mengunduhnya ke komputer Anda menggunakan subperintah pull
.
Jalankan perintah berikut ini untuk mengunduh citra ubuntu
resmi ke komputer Anda:
Anda akan melihat keluaran berikut ini:
OutputUsing default tag: latest
latest: Pulling from library/ubuntu
d51af753c3d3: Pull complete
fc878cd0a91c: Pull complete
6154df8ff988: Pull complete
fee5db0ff82f: Pull complete
Digest: sha256:747d2dbbaaee995098c9792d99bd333c6783ce56150d1b11e333bbceed5c54d7
Status: Downloaded newer image for ubuntu:latest
docker.io/library/ubuntu:latest
Setelah suatu citra telah diunduh, Anda lalu dapat menjalankan suatu kontainer dengan menggunakan citra yang telah diunduh dengan subperintah run
. Seperti yang Anda lihat dengan contoh hello-world
, jika suatu citra belum diunduh saat docker
dieksekusi dengan subperintah run
, klien Docker akan mengunduh citra terlebih dahulu, lalu menjalankan kontainer dengan menggunakannya.
Untuk melihat citra yang telah diunduh ke komputer Anda, ketik:
Keluaran akan terlihat mirip dengan yang berikut ini:
OutputREPOSITORY TAG IMAGE ID CREATED SIZE
ubuntu latest 1d622ef86b13 3 weeks ago 73.9MB
hello-world latest bf756fb1ae65 4 months ago 13.3kB
Seperti yang Anda nanti lihat di tutorial ini, citra yang Anda gunakan untuk menjalankan kontainer dapat dimodifikasi dan digunakan untuk menghasilkan citra baru, yang mungkin diunggah (didorong adalah istilah teknisnya) ke Docker Hub atau registri Docker lainnya.
Mari kita lihat cara menjalankan kontainer secara lebih mendetail.
OutputUnable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
0e03bdcc26d7: Pull complete
Digest: sha256:6a65f928fb91fcfbc963f7aa6d57c8eeb426ad9a20c7ee045538ef34847f44f1
Status: Downloaded newer image for hello-world:latest
Hello from Docker!
This message shows that your installation appears to be working correctly.
...
hello-world
secara lokal, sehingga Docker mengunduh citra dari Docker Hub, yang merupakan repositori asali. Setelah citra diunduh, Docker menciptakan suatu kontainer dari citra dan aplikasi di dalam kontainer yang dieksekusi, yang menampilkan pesan.docker
dengan subperintah search
. Sebagai contoh, untuk mencari citra Ubuntu, ketik:OutputNAME DESCRIPTION STARS OFFICIAL AUTOMATED
ubuntu Ubuntu is a Debian-based Linux operating sys… 10908 [OK]
dorowu/ubuntu-desktop-lxde-vnc Docker image to provide HTML5 VNC interface … 428 [OK]
rastasheep/ubuntu-sshd Dockerized SSH service, built on top of offi… 244 [OK]
consol/ubuntu-xfce-vnc Ubuntu container with "headless" VNC session… 218 [OK]
ubuntu-upstart Upstart is an event-based replacement for th… 108 [OK]
ansible/ubuntu14.04-ansible Ubuntu 14.04 LTS with
...
pull
.ubuntu
resmi ke komputer Anda:OutputUsing default tag: latest
latest: Pulling from library/ubuntu
d51af753c3d3: Pull complete
fc878cd0a91c: Pull complete
6154df8ff988: Pull complete
fee5db0ff82f: Pull complete
Digest: sha256:747d2dbbaaee995098c9792d99bd333c6783ce56150d1b11e333bbceed5c54d7
Status: Downloaded newer image for ubuntu:latest
docker.io/library/ubuntu:latest
run
. Seperti yang Anda lihat dengan contoh hello-world
, jika suatu citra belum diunduh saat docker
dieksekusi dengan subperintah run
, klien Docker akan mengunduh citra terlebih dahulu, lalu menjalankan kontainer dengan menggunakannya.OutputREPOSITORY TAG IMAGE ID CREATED SIZE
ubuntu latest 1d622ef86b13 3 weeks ago 73.9MB
hello-world latest bf756fb1ae65 4 months ago 13.3kB
Langkah 5 — Menjalankan Kontainer Docker
The container hello-world
you run in the previous step is an example of a container that runs and exits after displaying a text message. Containers can be much more useful than that and can be interactive. After all, containers are similar to virtual machines, only more resource friendly.
As an example, let's run a container using the latest image of Ubuntu. The combination of the -i and -t switches gives you interactive shell access into the container:
Your command prompt should change to reflect the fact that you are now working in a container and should look something like this:
Outputroot@d9b100f2f636:/#
Note the container id in the command prompt. In this example, the id is d9b100f2f636
. You will need that container id to identify the container when you want to delete it.
Now you can run any command inside the container. As an example, let's update the package database inside a container. You don't need to prefix the command with sudo
, because you are now operating inside the container as the root user :
Then, install any application on it. Let's install Node.js:
It installs Node.js in a container from the official Ubuntu repository. When the installation is complete, make sure that Node.js is installed:
You will see the version number displayed on your terminal:
Outputv10.19.0
Any changes you make in the container apply only to that container.
To exit the container, type exit
at the prompt.
Next, let's take a look at managing containers in our system.
hello-world
you run in the previous step is an example of a container that runs and exits after displaying a text message. Containers can be much more useful than that and can be interactive. After all, containers are similar to virtual machines, only more resource friendly.Outputroot@d9b100f2f636:/#
d9b100f2f636
. You will need that container id to identify the container when you want to delete it.sudo
, because you are now operating inside the container as the root user :Outputv10.19.0
exit
at the prompt.Step 6 — Managing Docker Containers
After using Docker for some time, you will have many active (running) and inactive containers on your computer. To see active containers , use:
You will see output similar to the following:
OutputCONTAINER ID IMAGE COMMAND CREATED
In this tutorial, you start two containers, one from image hello-word
and the other from image ubuntu
. Both containers are no longer running, but are still present on your system.
To see all containers — active and inactive, run docker ps
with switch -a
:
You will see output similar to this:
1c08a7a0d0e4 ubuntu "/bin/bash" 2 minutes ago Exited (0) 8 seconds ago quizzical_mcnulty
a707221a5f6c hello-world "/hello" 6 minutes ago Exited (0) 6 minutes ago youthful_curie
To see the most recent container you created, pass to switch -l
:
To start a stopped container, use docker start
, followed by the container id or container name. Let's start an Ubuntu based container with ID 1c08a7a0d0e4
:
The container will start up, and you can use docker ps
to see its status:
OutputCONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
1c08a7a0d0e4 ubuntu "/bin/bash" 3 minutes ago Up 5 seconds quizzical_mcnulty
To stop a running container, use docker stop
, followed by the container ID or name. This time, we'll use the names that Docker gives to containers, namely quizzical_mcnulty
:
Once you decide that you no longer need a container, remove it with the command docker rm
, again using either the ID or the container name. Use the command docker ps -a
to find the ID or container name for the container associated with the image hello-world
and delete it.
You can start a new container and give it a name using switch --name
. You can also use a switch --rm
to create a container that deletes itself when terminated. See commands docker run help
for more information about these and other options.
Containers can be turned into images that you can use to create new containers. Let's see how it works.
OutputCONTAINER ID IMAGE COMMAND CREATED
hello-word
and the other from image ubuntu
. Both containers are no longer running, but are still present on your system.docker ps
with switch -a
:1c08a7a0d0e4 ubuntu "/bin/bash" 2 minutes ago Exited (0) 8 seconds ago quizzical_mcnulty
a707221a5f6c hello-world "/hello" 6 minutes ago Exited (0) 6 minutes ago youthful_curie
-l
:docker start
, followed by the container id or container name. Let's start an Ubuntu based container with ID 1c08a7a0d0e4
:docker ps
to see its status:OutputCONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
1c08a7a0d0e4 ubuntu "/bin/bash" 3 minutes ago Up 5 seconds quizzical_mcnulty
docker stop
, followed by the container ID or name. This time, we'll use the names that Docker gives to containers, namely quizzical_mcnulty
:docker rm
, again using either the ID or the container name. Use the command docker ps -a
to find the ID or container name for the container associated with the image hello-world
and delete it.--name
. You can also use a switch --rm
to create a container that deletes itself when terminated. See commands docker run help
for more information about these and other options.Step 7 — Applying the Changes in the Container to the Docker Image
When you start a Docker image, you can create, modify, and delete files just like you can with a virtual machine. The changes you make will only apply to that container. You can start and stop it, but once you destroy it with the command docker rm
, changes are lost forever.
This section shows you how to save the state of a container as a new Docker image.
After installing Node.js inside an Ubuntu container, you now have a container running from an image, but this container is different from the image you used to create it. But you may want to reuse this Node.js container as the basis for a new image later.
Then apply the changes to the new Docker image instance using the following command.
The -m switch is for implementation messages that help you and others know about the changes you made, while -a is used to specify the author. container_id
is what you noted earlier in the tutorial when you started an interactive Docker session. Unless you created an additional repository on Docker Hub, repository
that will usually be your Docker Hub username.
For example, for a user named sammy , with a container ID d9b100f2f636
, the command would be:
When you commit an image, the new image is stored locally on your computer. Later in this tutorial you will learn how to push images to a Docker registry such as Docker Hub so others can access them.
Listing the Docker images again will show the new and old images to which the new ones are referenced:
You will see output like this:
OutputREPOSITORY TAG IMAGE ID CREATED SIZE
sammy/ubuntu-nodejs latest 7c1f35226ca6 7 seconds ago 179MB
...
In this example, ubuntu-nodejs
it's a new image, which inherits from a ubuntu
pre-existing image from Docker Hub. The size difference reflects the changes made. And in this example, the change is that NodeJS is installed. So the next time you need to run a container using Ubuntu with NodeJS pre-installed, you can jump right in with this new image.
You can also build an image from an Dockerfile
, which allows you to automate software installation in a new image. However, that is beyond the scope of this tutorial.
Now, let's share the new image with others so they can create containers from it.
docker rm
, changes are lost forever.container_id
is what you noted earlier in the tutorial when you started an interactive Docker session. Unless you created an additional repository on Docker Hub, repository
that will usually be your Docker Hub username.d9b100f2f636
, the command would be:OutputREPOSITORY TAG IMAGE ID CREATED SIZE
sammy/ubuntu-nodejs latest 7c1f35226ca6 7 seconds ago 179MB
...
ubuntu-nodejs
it's a new image, which inherits from a ubuntu
pre-existing image from Docker Hub. The size difference reflects the changes made. And in this example, the change is that NodeJS is installed. So the next time you need to run a container using Ubuntu with NodeJS pre-installed, you can jump right in with this new image.Dockerfile
, which allows you to automate software installation in a new image. However, that is beyond the scope of this tutorial.Step 8 — Pushing the Docker Image to the Docker Repository
The next logical step after creating a new image from an existing image is to share it with a few friends of your choosing, the world on Docker Hub, or another Docker registry that you have access to. In order to push an image to Docker Hub or another Docker registry, you must have an account there.
This section shows you how to push a Docker image to Docker Hub. To learn how to create your own private Docker registry, read How To Set Up a Private Docker Registry on Ubuntu 14.04 .
The first step to pushing your image is to log into Docker Hub.
You will be asked to authenticate using your Docker Hub password. If you provide the correct password, the authentication should work.
Note: If your Docker registry username is different from the local username you used to create the image, you must tag your image with the registry username. For the example given in the last step, you would type:
Then, you can push your own image using:
To push an image ubuntu-nodejs
to the sammy repository , the command would be:
It may take a few moments for the image upload to complete, but when finished, the output will look something like this:
OutputThe push refers to a repository [docker.io/sammy/ubuntu-nodejs]
e3fbbfb44187: Pushed
5f70bf18a086: Pushed
a3b5c80a4eba: Pushed
7f18b442972b: Pushed
3ce512daaf78: Pushed
7aae4540b42d: Pushed
...
After pushing the image to the registry, it will be listed on your account dashboard, as shown in the image below.

If the push attempt returns an error like this, it's possible you're not logged in:
OutputThe push refers to a repository [docker.io/sammy/ubuntu-nodejs]
e3fbbfb44187: Preparing
5f70bf18a086: Preparing
a3b5c80a4eba: Preparing
7f18b442972b: Preparing
3ce512daaf78: Preparing
7aae4540b42d: Waiting
unauthorized: authentication required
Log in with login docker
and repeat push attempts. Then make sure that the image is in the Docker Hub repository page.
You can now use to drag the image to the new machine and use it to run a new container.docker pull sammy/ubuntu-nodejs
Note: If your Docker registry username is different from the local username you used to create the image, you must tag your image with the registry username. For the example given in the last step, you would type:
ubuntu-nodejs
to the sammy repository , the command would be:OutputThe push refers to a repository [docker.io/sammy/ubuntu-nodejs]
e3fbbfb44187: Pushed
5f70bf18a086: Pushed
a3b5c80a4eba: Pushed
7f18b442972b: Pushed
3ce512daaf78: Pushed
7aae4540b42d: Pushed
...

OutputThe push refers to a repository [docker.io/sammy/ubuntu-nodejs]
e3fbbfb44187: Preparing
5f70bf18a086: Preparing
a3b5c80a4eba: Preparing
7f18b442972b: Preparing
3ce512daaf78: Preparing
7aae4540b42d: Waiting
unauthorized: authentication required
login docker
and repeat push attempts. Then make sure that the image is in the Docker Hub repository page.docker pull sammy/ubuntu-nodejs
Tags: sma ksatrya jurusan uin bukittinggi ami cinta smpn 1 munjungan sunlight pours down tk pertiwi al-wildan islamic school 3 bsd foto smk laboratorium jakarta lembaga biblika indonesia smpn 42 surabaya alamat smpn 116 jakarta utara alamat smpn 101 jakarta barat smp islam ta'allumul huda bumiayu mirfa suri biodata mtv movie & tv award untuk ciuman terbaik smp 20 makassar alamat sman 47 jakarta smpn 21 surabaya lomba tingkat pramuka smp santa maria medan sman 7 garut sman 1 jatibarang sman jatinangor ejen ali musim 1 berapa episode sd saraswati tabanan sdn karet 01 pagi sdn kramat pela 09 smp satu bakti bogor smp 13 tasikmalaya sdn pondok bambu 11 pagi sman 8 pandeglang smpn 153 jakarta sma pgri 24 sman 1 cibadak ai haneda sman 1 way jepara smk bhipuri serpong smp 5 tasikmalaya vmc music entertainment
smp 2 gedangan polusi termal smpn 146 jakarta smk penerbangan banda aceh smkn 3 batu bless kid school sikumpah shimeko tanabe sman 18 garut tk islam al azhar 41 palembang sdn keagungan pangkat polisi amerika smpn 5 tangerang sekolah mutiara bangsa 6 komik fiksi ilmiah smp 24 jakarta tk bhayangkari terdekat tunjung sari school profil hasan aftershine alamat smpn 162 jakarta utara tk aba 1 jember ypi darussalam cerme tonaas walian sekolah olahraga pekanbaru alamat sman 44 jakarta smp 129 jakarta sma pgri cicalengka kota bandung berapa kecamatan sdn lagoa 07 smp 62 batam sd pemuda bangsa smp pgri kalibagor tk pusri palembang tk negeri cipayung 01 smp bakti idhata sd jambe agung smp 2 perak sma negeri 1 sumber cirebon sman 1 porong smk bina profesi
smpn 1 cibitung rumah sakit tipe a di jawa tengah smk pusaka 1 jakarta smpn 5 tasikmalaya vitae tanamal sman 1 bone smk trisakti ngawi sman 1 sape translate bahasa dayak bakumpai prestasi prima smp al falah surabaya desa di bandung barat sdn kragilan 3 alamat smpn 45 jakarta sdn kebayoran lama selatan 12 kecamatan di kota serang sdn jatireja 01 smp 9 pontianak smp n 1 kedungbanteng tk kartini smpn 152 sdip ummul mukminin sdit idrisiyyah tamansari karel van der heijden mitologi babilonia smk muhammadiyah 2 tangerang foto smp islam ar rahmah jakarta yapia pondok aren sman 1 cigugur sd intis school yogyakarta pendaftaran sma 7 banda aceh smpit raudhatul muttaqin keshogunan ashikaga sma negeri 17 jakarta smkn 3 banda aceh smkn 58 jakarta foto smk nusantara kedoya fithrah insani 2 sd muhammadiyah 7 bandung smp imanuel kabupaten serang berapa kecamatan smp yari school padang sd xaverius 3 palembang smp cendekia sidoarjo smp 43 padang sdn jati pulo 08 pagi smk taman siswa banjarnegara sd kasih anugerah sma 14 maros sdn raya barat foto sma taruna gajah mada metro smkn 1 pagerwojo foto smp pgri citeureup smpn 2 tarogong kidul smk kitri bakti smpn 6 madiun sman 3 langsa arteri axillaris smk setia gama maria nagai sdi al ikhlas cipondoh sma daya utama smp pustek serpong smp 7 pekalongan sma candra naya alamat smk 53 jakarta barat saint john meruya foto sd ashfiya sdn galunggung sdn tulangampiang smkn 1 lubuk pakam smk mahaputra sma pusaka 1 smk pembangunan mranggen smk yp 17 cilegon tunas daud foto smp 1 gebog sma al fityan medan smp 2 palangkaraya smp 3 jetis smk boarding school brebes smp negeri 95 jakarta foto ar rahman islamic school sma negeri 1 lubuklinggau smp islam al azhar 33 palembang contoh basa krama smp hatoy sukabumi sekolah insan cendekia mandiri boarding school foto sma negeri 1 ngronggot konidiospora rabu abu kamis putih jumat agung sabtu suci minggu paskah 2023 smpn 92 jakarta universitas muhammadiyah bekasi smk cipta skill nama sekolah sma onyo di jakarta smp budaya dermaga kota di bandung apa saja smk tanjung jakarta barat smp kusuma pekanbaru uzbekistan sdn 147 pekanbaru sma 2 bireuen tk ihya assunnah tasikmalaya sidomulyo ungaran smp yadika 5 foto smp muhammadiyah 1 cirebon smp tunas baru ciparay smp pgri 8 bogor sd kartika jayapura sdn pajeleran 01 - sukahati cibinong kabupaten bogor foto sekolah abdi wacana gunung sindur sinetron violet piala afrika u-20 smpn 24 sijunjung tk hang tuah 7 kakawin gatotkacasraya pkbm negeri 25 kecamatan di bandung barat sdn kebon pala 01 pagi sma 11 pangkep smp n 26 palembang tk aba pokoh sd kanisius gowongan sd karitas nandan smp negeri 66 jakarta peta kelurahan jakarta selatan smp 87 smk mandiri 2 balaraja alamat smkn 15 jakarta tk cinta budaya asbabun nuzul surah al fajr sd al islam 2 jamsaren sma taruna timika smp & sma harapan nusantara denpasar foto arsip sman 1 banyuasin 1 sd ciujung sma negeri 2 lhokseumawe smk mahadhika 1 smp 1 parung biaya masuk sd emirattes islamic school sd muhammadiyah 18 sma 2 cibinong tk nabila smp baki 1 smp cordova samarinda nonton film si roy ryan hidayat smk n 5 yogyakarta alamat smkn 55 jakarta rumeysa sultan mechamato movie sub indo kecamatan di kota kendari johannes verkuyl liukan adalah baju melayu gunting cina ejen ali musim 1 sampai episode berapa kota bandung ada berapa kecamatan desa di kabupaten bandung barat liga champions 2023 2024 sd alami driyorejo smp soreang putera apa itu lt pramuka daftar episode running man smp 6 purwodadi alamat sdn kapuk 07 petang tk sinar dharma sdn kramat jati 11 tk aba kadisoka tk baitul makmur foto sds kartika viii-5 nama nama kecamatan di kabupaten malang sman 1 salem smp 24 sijunjung smp negeri 84 jakarta utara unsur transuranium kimia bag 2 sdit adzkia 2 padang desa kepuh palimanan alamat smpn 227 jakarta selatan rumah sakit di jawa tengah sdn angke 06 pagi smp 213 jakarta timur smp negeri 121 jakarta utara sdn kepuhkiriman i kabupaten sidoarjo foto sekolah immanuel jelambar sma negeri 1 ketanggungan smp al ihsan bekasi pkbm negeri 33 malaka sma plus taruna bangsa padang lawas smk korpri bekasi sd plus darul ulum sman 1 manggar tk negeri pembina cibinong sman 2 enok smp negeri 1 karanggeneng biaya masuk smp mutiara bangsa budaya vatikan lagu daerah suku abui smp negeri 30 medan smpn 164 foto tk tunas mandiri kabupaten dan kota di sulawesi utara

Apa itu Program Perkuliahan Jalur RPL (Rekognisi Pembelajaran Lampau / Recognition of Past Learning)?
RPL adalah pengakuan atas Hasil Belajar yang diperoleh seseorang dari pendidikan formal, nonformal, informal, dan/atau p…

Karna Hal ini Husen Membunuh dan Mutilasi Pengusaaha Galon Isi Ulang Irwan Hutagalung di Jalan Mulawarman Raya Tembalang, Kota Semarang
Nasib Imam penjual angkringan di dekat lokasi pembunuhan dipertaruhkan. Ia bisa saja dijerat hukum karena lebih memilih …

Will the United States become the 6th country in the world that defaults on debt, aka bankruptcy? Default ?
The United States (US) is faced with the threat of debt default of USD 31.45 trillion or equivalent to Rp. 462,000 trill…

WOW Mark Zuckerberg Mendapat Medali Emas pertamanya di Turnamen Bela Diri Jiu Jitsu
CEO Meta dan pendiri Facebook, Mark Zuckerberg memenangkan medali emas di turnamen jiu jitsu pertamanya. Selain medali e…

Begini Cara Translate Inggris Ke Indonesia Di Word Tanpa Mengunakan Google Translate
Pengguna umumnya menerjemahkan dokumen berbahasa Inggris ke dalam bahasa Indonesia menggunakan bantuan Google Translate …

Inilah 4 Langkah Penting Cara Menentukan Target Pasar
Menentukan strategi pemasaran yang tepat merupakan salah satu kunci keberhasilan sebuah bisnis. Dimulai dengan mengetahu…

Tahukah anda kenapa Madu berubah warna sampai Hitam? Berbahayakah dikonsumsi?
Madu merupakan salah satu bahan makanan yang paling tahan lama dan dapat bertahan lama jika disimpan dengan baik. Sangat…

Inilah perbedaan HTTP dan HTTPS dan Pengertiannya
Saat ini, hampir semua situs web disarankan untuk menggunakan protokol HTTPS. Nah, jika Anda ingin beralih ke HTTPS teta…

Serupa Tapi Tak Sama, Tahukah kamu Inilah Perbedaan OLED, AMOLED, Super AMOLED, Dynamic AMOLED, dan LTPO AMOLED
Jika ingin merasakan pengalaman visual layar yang lebih menyenangkan, sebaiknya pilih perangkat yang menawarkan panel OL…

Taukah kamu 500 tentara Jepang Dimangsa Buaya di Pulau Ramree selama pendudukan?
Bagaimana rasanya lari terluka tapi berakhir di mulut buaya?Tragedi mengerikan terjadi sekitar 78 tahun yang lalu. Trage…