如何使用Docker容器化CodeIgniter项目?

oprakyz7  于 2022-12-06  发布在  Docker
关注(0)|答案(3)|浏览(218)

我对Docker很陌生,我有一个CodeIgniter项目,我一直在通过我的localhost(XAMPP)工作,直到现在。我现在想使用GCP在Docker上托管我的项目。
有没有人可以提供指导,告诉我如何写一个docker-compose.yml,用redis,php,mysql和nginx容器来容器化这个项目?还有,我需要如何构造我的CI项目才能工作?

izkcnapc

izkcnapc1#

我每天都在Codeigniter 4上使用docker,这是我的结构,虽然在我的结构中我既没有使用redis也没有使用nginx,而是使用apache。
文件夹结构:

.database
.docker
  |php
     |sites-available
       |site.conf
     |Dockerfile
  |custom.ini
  |docker-compose.yml
.git
app
  |app
  |public
  |tests
  |vendor
  |writable
  |.env
  |composer.json
  |composer.lock
  |spark
.gitignore

至于配置文件,下面是docker-compose.yml

version: '3'
services:
    web:
        container_name: ci4-web
        build:
            context: ./php
        ports:
            - 80:80
        volumes:
            - ../app:/var/www/html/app/
            - ./custom.ini:/usr/local/etc/php/conf.d/custom.ini
        links:
            - mysql
        depends_on:
          - mysql
    mysql:
        container_name: db-ci4
        image: mysql:latest
        volumes:
            - ./db:/var/lib/mysql
        command: --default-authentication-plugin=mysql_native_password
        ports:
            - 3306:3306
        environment:
            MYSQL_ROOT_PASSWORD: root

停靠文件

FROM php:7.2-apache
RUN apt-get update && \
    apt-get install -y
RUN apt-get install -y curl
RUN apt-get install -y build-essential libssl-dev zlib1g-dev libpng-dev libjpeg-dev libfreetype6-dev
RUN apt-get install -y libicu-dev
COPY sites-available/elioter.conf /etc/apache2/sites-enabled/elioter.conf
RUN apt-get update
RUN docker-php-ext-install intl
RUN docker-php-ext-configure intl
RUN docker-php-ext-install mysqli pdo pdo_mysql zip mbstring
RUN a2enmod rewrite
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
    && docker-php-ext-install gd
RUN service apache2 restart

我站点.conf

<VirtualHost *:80>
    DocumentRoot "/var/www/html/app/public/"
    ServerName ci4.local
    <Directory "/var/www/html/app/public/">
        AllowOverride all
    </Directory>
</VirtualHost>

在我的youtube系列文章中,我创建了一个反映这种结构的github repo:

qgzx9mmu

qgzx9mmu2#

我在学习Docker的时候遇到了这个问题,我想在这里留下一个更新。我使用的是bitnami/codeigniter 3。这对我来说很容易,因为我不需要将我的应用程序迁移到Codeigniter 4。

hrysbysz

hrysbysz3#

最近我遇到了同样的问题,但不知何故,我弄清楚了,我用了下面的代码。此外,我已经在一个不同的端口上安装MySQL,因为我在3306上运行另一个应用程序。

version: "1.0"
services:
  webserver:
    image: thecodingmachine/php:7.4-v3-apache-node12
    container_name: test-webserver
    working_dir: /var/www/html
    environment:
      PHP_EXTENSIONS: apcu pdo_mysql opcache redis zip gd yaml exif xdebug
      PHP_EXTENSION_GD: 1
      PHP_EXTENSION_MYSQLI: 1
      APACHE_DOCUMENT_ROOT: app
      APACHE_RUN_GROUP: www-data # use www-data user in container.. which is also used on most webservers for deployer
      APACHE_RUN_USER: www-data
      PHP_EXTENSION_XDEBUG: 1
    depends_on:
      - mysql
    volumes:
      - ./:/var/www/html
      - ~/.ssh:/root/.ssh
    stdin_open: true
    tty: true
    ports:
      - "9090:80"
  mysql:
    image: mysql:5.7
    container_name: test-mysql
    restart: unless-stopped
    ports:
      - "3307:3307"
    expose:
      - 3307
    environment:
      MYSQL_ROOT_PASSWORD: MYSQL_ALLOW_EMPTY_PASSWORD
      MYSQL_DATABASE: test-db
      MYSQL_USER: testuser
      MYSQL_PASSWORD: password
      MYSQL_TCP_PORT: 3307
  phpmyadmin:
    image: phpmyadmin/phpmyadmin
    restart: unless-stopped
    container_name: test-phpadmin
    environment:
      PMA_HOST: mysql
      PMA_USER: testuser
      PMA_PASSWORD: password
      PMA_PORT: 3307
      UPLOAD_LIMIT: 300M
    ports:
      - 9091:80

此外,添加到我的github repo。git代码包含了一些针对CI4的注解代码。

相关问题