Add docker & Nginx to Laravel
Create a Dockerfile at the root of the project: FROM php:8.1-fpm-alpine RUN apk add --no-cache nginx wget RUN mkdir -p /run/nginx COPY docker/nginx.conf /etc/nginx/nginx.conf RUN mkdir -p /app COPY .…
Create a Dockerfile at the root of the project: FROM php:8.1-fpm-alpine RUN apk add --no-cache nginx wget RUN mkdir -p /run/nginx COPY docker/nginx.conf /etc/nginx/nginx.conf RUN mkdir -p /app COPY .…