Docker Coba Berhadiah
Pertama karena saya menggunakan Fedora jadi akan lebih lucu kalau saya mengepul ubuntu, berikut perintah untuk mengepull ubuntu dari docker fedora
sudo docker pull ubuntu
Kemudian akan muncul pemberitahuan seperti berikut dari terminal
Using default tag: latest
Trying to pull repository docker.io/library/ubuntu ...
sha256:72f832c6184b55569be1cd9043e4a80055d55873417ea792d989441f207dd2c7: Pulling from docker.io/library/ubuntu
124c757242f8: Pull complete
2ebc019eb4e2: Pull complete
dac0825f7ffb: Pull complete
82b0bb65d1bf: Pull complete
ef3b655c7f88: Pull complete
Digest: sha256:72f832c6184b55569be1cd9043e4a80055d55873417ea792d989441f207dd2c7
Status: Downloaded newer image for docker.io/ubuntu:latest
buat file dengan nama Dockerfile dalam sebuah direktory yang berisi code berikut ini
#
# Filenamenya : Dockerfile
#
FROM ubuntu:latest
MAINTAINER Aziz Faozi admin@labseni.com
#Untuk setting proxy
ENV http_proxy http://USERNAME:PASSWORD@cache.itb.ac.id:8080
ENV https_proxy http://USERNAME:PASSWORD@cache.itb.ac.id:8080
RUN apt-get update
RUN apt-get install -y apache2
ADD index.html /var/www/html
CMD /user/snim/apache2/ctl -D FOREGROUND
EXPOSE 80
Terus bikin file index.html di direktory yang sama isinya sebagai berikut
<html>
<head>
</head>
<body>
ASsek
</body>
</html>
Build Dockerfile-nya dengan menggunakan perintah berikut ini
sudo docker build -t servergue .
Check kalo image-nya udah ada dikomputer dengan menggunakan perintah berikut
sudo docker images
terus di run dengan perintah berikut ini
sudo docker run -d servergue
sudo docker pull ubuntu
Kemudian akan muncul pemberitahuan seperti berikut dari terminal
Using default tag: latest
Trying to pull repository docker.io/library/ubuntu ...
sha256:72f832c6184b55569be1cd9043e4a80055d55873417ea792d989441f207dd2c7: Pulling from docker.io/library/ubuntu
124c757242f8: Pull complete
2ebc019eb4e2: Pull complete
dac0825f7ffb: Pull complete
82b0bb65d1bf: Pull complete
ef3b655c7f88: Pull complete
Digest: sha256:72f832c6184b55569be1cd9043e4a80055d55873417ea792d989441f207dd2c7
Status: Downloaded newer image for docker.io/ubuntu:latest
Membuat web server dengan docker
Setelah berhasil sekarang kita akan membuat web server dengan menggunakan dockerbuat file dengan nama Dockerfile dalam sebuah direktory yang berisi code berikut ini
#
# Filenamenya : Dockerfile
#
FROM ubuntu:latest
MAINTAINER Aziz Faozi admin@labseni.com
#Untuk setting proxy
ENV http_proxy http://USERNAME:PASSWORD@cache.itb.ac.id:8080
ENV https_proxy http://USERNAME:PASSWORD@cache.itb.ac.id:8080
RUN apt-get update
RUN apt-get install -y apache2
ADD index.html /var/www/html
CMD /user/snim/apache2/ctl -D FOREGROUND
EXPOSE 80
Terus bikin file index.html di direktory yang sama isinya sebagai berikut
<html>
<head>
</head>
<body>
ASsek
</body>
</html>
Build Dockerfile-nya dengan menggunakan perintah berikut ini
sudo docker build -t servergue .
Check kalo image-nya udah ada dikomputer dengan menggunakan perintah berikut
sudo docker images
terus di run dengan perintah berikut ini
sudo docker run -d servergue
Comments
Post a Comment