您好,登錄后才能下訂單哦!
將Laravel應(yīng)用程序與Docker容器化部署是一個相對簡單的過程。以下是一個基本的步驟指南,幫助你完成這個任務(wù):
首先,確保你已經(jīng)在你的開發(fā)機器上安裝了Docker。你可以從Docker官方網(wǎng)站下載并安裝適合你操作系統(tǒng)的Docker版本。
在你的Laravel項目根目錄下創(chuàng)建一個名為Dockerfile
的文件,并添加以下內(nèi)容:
# 使用官方的PHP鏡像作為基礎(chǔ)鏡像
FROM php:7.4-fpm
# 設(shè)置工作目錄
WORKDIR /var/www/html
# 復(fù)制當(dāng)前目錄下的所有文件到工作目錄
COPY . /var/www/html
# 安裝依賴
RUN apt-get update && apt-get install -y \
build-essential \
libpng-dev \
libjpeg62-turbo-dev \
libfreetype6-dev \
libwebp-dev \
libjpeg-dev \
libzip-dev \
libonig-dev \
zip \
curl \
unzip
# 清理緩存
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
# 安裝PHP擴展
RUN docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp
RUN docker-php-ext-install gd pdo_mysql zip exif pcntl
# 安裝Composer
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
# 設(shè)置環(huán)境變量
ENV COMPOSER_HOME=/root/.composer
# 暴露端口
EXPOSE 80
# 啟動PHP-FPM
CMD ["php-fpm"]
在你的Laravel項目根目錄下創(chuàng)建一個名為docker-compose.yml
的文件,并添加以下內(nèi)容:
version: '3.8'
services:
# Laravel應(yīng)用服務(wù)
app:
build:
context: .
dockerfile: Dockerfile
image: laravel_app
container_name: laravel_app_container
restart: unless-stopped
tty: true
environment:
SERVICE_NAME: app
SERVICE_TAGS: dev
working_dir: /var/www/html
volumes:
- ./:/var/www/html
networks:
- laravel
# Nginx服務(wù)
nginx:
image: nginx:stable-alpine
container_name: nginx_container
restart: unless-stopped
tty: true
ports:
- "8000:80"
volumes:
- ./:/var/www/html
- ./nginx.conf:/etc/nginx/conf.d/default.conf
networks:
- laravel
# MySQL服務(wù)
mysql:
image: mysql:5.7-fpm
container_name: mysql_container
restart: unless-stopped
tty: true
environment:
MYSQL_DATABASE: laravel
MYSQL_USER: laravel
MYSQL_PASSWORD: secret
MYSQL_ROOT_PASSWORD: root
volumes:
- mysql_data:/var/lib/mysql
networks:
- laravel
volumes:
mysql_data:
networks:
laravel:
driver: bridge
在項目根目錄下創(chuàng)建一個名為nginx.conf
的文件,并添加以下內(nèi)容:
server {
listen 80;
server_name localhost:8000;
root /var/www/html/public;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
error_page 404 /index.php;
location ~ \.php$ {
fastcgi_pass app:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.(?!well-known).* {
deny all;
}
}
在項目根目錄下打開終端,運行以下命令來構(gòu)建和啟動Docker容器:
docker-compose up -d --build
打開瀏覽器,訪問http://localhost:8000
,你應(yīng)該能夠看到你的Laravel應(yīng)用在Docker容器中運行。
如果你想停止并移除容器,可以運行以下命令:
docker-compose down
這樣,你就完成了Laravel應(yīng)用程序的Docker容器化部署。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。