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