首页 >后端开发 >php教程 >Dockerize CodeIgniter 分步指南

Dockerize CodeIgniter 分步指南

Mary-Kate Olsen
Mary-Kate Olsen原创
2024-12-06 12:57:111058浏览

Dockerize CodeIgniter A Step-by-Step Guide

在这篇博文中,我们将演练如何 Dockerize CodeIgniter 3 应用程序。在本指南结束时,您将拥有一个使用 Apache、PHP 和 MySQL 运行的容器化应用程序,所有这些都通过 Docker Compose 进行管理。这种方法将简化您的开发环境并确保跨多个系统的一致设置。

先决条件

在我们深入了解详细信息之前,请确保您已安装以下工具:

  • Docker:容器化应用程序及其依赖项。
  • Docker Compose:管理多容器 Docker 应用程序。
  • CodeIgniter 3:您现有的 CodeIgniter 3 项目。

第 1 步:设置 Dockerfile:

Dockerfile 定义了应用程序运行的环境。设置方法如下:

# Use an official PHP image with Apache
FROM php:8.2-apache

# Enable Apache mod_rewrite for CodeIgniter
RUN a2enmod rewrite

# Set the working directory in the container
WORKDIR /var/www/html

# Copy project files into the container
COPY . /var/www/html

# Install necessary PHP extensions
RUN docker-php-ext-install mysqli

# Set proper permissions for Apache to access files
RUN chown -R www-data:www-data /var/www/html && chmod -R 755 /var/www/html

# Expose port 80
EXPOSE 80

第 2 步:设置 Docker Compose

现在让我们定义一个 docker-compose.yml 文件,它将为您的 Web 应用程序和数据库配置和运行多个容器。

version: '3.8'

services:
  app:
    build:
      context: .
      dockerfile: Dockerfile
    container_name: ci3-docker  # Set the container name here
    ports:
      - "8080:80"  # Map port 80 of the container to port 8080 on the host
    volumes:
      - .:/var/www/html  # Mount current directory to /var/www/html inside the container
    depends_on:
      - db  # Ensure the database is up before starting the application

  db:
    image: mysql:8.0  # Uses the official MySQL image
    container_name: mysql
    restart: always
    environment:
      MYSQL_ROOT_PASSWORD: root  # Root password for MySQL
      MYSQL_DATABASE: ci3docker  # Initial database to create
    ports:
      - "3306:3306"  # Expose port 3306 for database connections
    volumes:
      - db_data:/var/lib/mysql  # Persist MySQL data

volumes:
  db_data:
    name: ci3-docker  # Name the volume for MySQL data persistence

第 3 步:构建并运行容器

一旦您的 Dockerfile 和 docker-compose.yml 文件准备就绪,就可以构建并运行容器了。在项目根目录中,打开终端并运行以下命令:
构建 Docker 镜像:

docker-compose build

启动容器:

docker-compose up

这将启动 CodeIgniter 应用程序和 MySQL 数据库。应用程序容器可通过 http://localhost:8080 访问,而 MySQL 数据库将在端口 3306 上运行。

步骤 4:更新 CodeIgniter 数据库配置

现在,让我们确保 CodeIgniter 可以连接到容器内的 MySQL 数据库。打开您的 application/config/database.php 并更新数据库连接设置:

$db['default'] = array(
    'dsn'   => '',
    'hostname' => 'db',  // Service name from Docker Compose
    'username' => 'root',
    'password' => 'root',  // Password set in docker-compose.yml
    'database' => 'ci3docker',  // Database name set in docker-compose.yml
    'dbdriver' => 'mysqli',
    'dbprefix' => '',
    'pconnect' => FALSE,
    'db_debug' => (ENVIRONMENT !== 'production'),
    'cache_on' => FALSE,
    'cachedir' => '',
    'char_set' => 'utf8',
    'dbcollat' => 'utf8_general_ci',
    'swap_pre' => '',
    'encrypt' => FALSE,
    'compress' => FALSE,
    'stricton' => FALSE,
    'failover' => array(),
    'save_queries' => TRUE
);

第 5 步:访问应用程序

容器启动后,请在 Web 浏览器中访问 http://localhost:8080。如果一切设置正确,您的 CodeIgniter 3 应用程序应该可以在 Docker 容器内顺利运行。

第 6 步:管理 Docker 容器

要停止容器,请运行:

docker-compose down

结论

在本指南中,我们成功对 CodeIgniter 3 应用程序进行了 Docker 化,使其可移植且易于管理。 Docker Compose 使我们能够轻松定义和运行多容器应用程序,使其非常适合开发和生产环境。

通过使用 Docker,您可以确保所有开发人员拥有一致的环境,并轻松地将应用程序部署到各种系统,而无需担心依赖关系。如果您希望扩展您的应用程序或在云环境中运行它,Docker 使其管理起来非常简单。

以上是Dockerize CodeIgniter 分步指南的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn