“Cara Build NodeJs menggunakan Docker”
Daftar Isi
Pengantar
Berikut ini adalah cara build nodejs di dalam docker
Cara Build NodeJs Menggunakan Docker
- Buka website -> https://github.com/kyuby13/nodejs
- Clone project
git clone https://github.com/kyuby13/nodejs.git
- Masuk ke folder nodejs
cd nodejs
- Build image
docker build . -t /node-web-app
- Run image
docker run -p 49160:8080 -d /node-web-app
- Test curl
$ curl -i localhost:49160 HTTP/1.1 200 OK X-Powered-By: Express Content-Type: text/html; charset=utf-8 Content-Length: 12 ETag: W/"c-M6tWOb/Y57lesdjQuHeB1P/qTV0" Date: Mon, 13 Nov 2017 20:53:59 GMT Connection: keep-alive Hello world
Penutup
Sahabat Blog Learning & Doing demikianlah penjelasan mengenai Cara Build NodeJs Menggunakan Docker. Semoga Bermanfaat . Sampai ketemu lagi di postingan berikut nya.
(Visited 138 times, 1 visits today)