ReactJs
Dockerize ReactJs Application
Menyiapkan Project
Menyiapkan File Docker
File
Deskripsi
nginx.conf
server {
listen 5000;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
}Dockerfile
.dockerignore
docker-compose.yml
Menjalankan Container

Referensi
Last updated

