yii2-dockerized

A template for docker based Yii 2 applications

  • 所有者: codemix/yii2-dockerized
  • 平台:
  • 许可证:
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

Yii 2 Dockerized

A template for docker based Yii 2 applications.

  • Ephemeral container, configured via environment variables
  • Application specific base image (Nginx + PHP-FPM)
  • Optional local configuration overrides for development/debugging (git-ignored)
  • Base scaffold code for login, signup and forgot-password actions
  • Flat configuration file structure
  • Optional cron integration for periodic jobs

Note: The included example base image is now based on Alpine Linux and
uses s6-overlay to supervise
Nginx + PHP-FPM. You can of course change this to any setup you prefer.
You find the "old" setup based on Apache and mod_php in the "apache" branch.
Note though, that it's no longer maintained.

1 Main Concepts

1.1 Base Image

The core idea of this template is that you build a bespoke base image
for your application that meets your project's exact requirements. This image
contains:

  • PHP runtime environment (e.g. Nginx + PHP-FPM)
  • PHP extensions
  • Composer packages

The base image will hardly ever change unless

  • you want to upgrade to a newer PHP or Yii version or
  • you want to add a missing PHP extension or composer package.

Its configuration can be found in the ./build directory:

  • Dockerfile adds PHP extensions and required system packages
  • composer.json and composer.lock list composer packages

The actual app image extends from this base image and uses ./Dockerfile
in the main directory. It basically only adds your app sources and productive
PHP config on top.

In the recommended scenario you would build the base image once then upload
it to your container registry and share it with your co-developers.

If you don't have a container registry you can still use our template. But then
each developer in your team will have to build the same base image locally.

1.2 Runtime Configuration via Environment Variables

We follow docker's principle that containers are configured via environment
variables. This only includes runtime configuration, of course: Things like
whether to run in debug mode or DB credentials. Most other settings like for
example URL rules will be hardcoded in ./config/web.php.

You should continue to follow this principle when developing your app. For
more details also see our
yii2-configloader that we use
in this template.

Note: There's also one important main setting for php-fpm that affects
how many children should be started. This depends on the RAM you have
available. See PHP_FPM_MAX_CHILDREN in docker-compose-example.yml.

2 Initial Project Setup

2.1 Download Application Template

First fetch a copy of our application template, for example with git:

git clone https://github.com/codemix/yii2-dockerized.git myproject
rm -rf myproject/.git

You could also download the files as ZIP archive from GitHub.

2.2 Init Composer Packages

To manage composer packages We use a container that is based on the official
composer image. First go to the
./build directory of the app:

cd myproject/build

To add a package run:

docker-compose run --rm composer require some/library

To update all packages run:

docker-compose run --rm composer update

This will update composer.json and composer.lock respectively. You can
also run other composer commands, of course.

If you don't need any extra packages you still need to create an initial
composer.lock:

docker-compose run --rm composer install

You now have to rebuild your base image! (see below).

Note: As docker's composer image may not meet the PHP requirements of all
your packages you may have to add --ignore-platform-reqs to be able to
install some packages.

2.3 Build the Base Image

Before you continue with building the base image you should:

  • Set a tag name for the base image in ./build/docker-compose.yml
  • Use the same tag name in ./Dockerfile in the main directory
  • Optionally add more PHP extensions or system packages in ./build/Dockerfile
  • Choose a timezone in ./build/Dockerfile. This is only really relevant if
    you want to enable crond, to let the jobs run at correct local times.

To build the base image, again go to the ./build directory and run:

docker-compose build

Now you could upload that image to your container registry.

2.4 Cleanup and Initial Commit

At this point you may want to modify our application template, add some default
configuration and remove those parts that you don't need. Afterwards you are
ready for the initial commit to your project repository.

3 Local Development

During development we map the local app directory into the app image.
This way we always run the code that we currently work on.

As your local docker setup may differ from production (e.g. use different
docker network settings) we usually keep docker-compose.yml out of version
control. Instead we provide a docker-compose-example.yml with a reasonable
example setup.

Since the runtime configuration should happen with environment variables, we
use a .env file. We also keep this out of version control and only include a
.env-example to get developers started.

3.1 Initial Setup of a Development Environment

After you've cloned your project you need to prepare two files:

cd myproject
cp docker-compose-example.yml docker-compose.yml
cp .env-example .env

You should modify these two files e.g. to enable debug mode or configure a
database. Then you should be ready to start your container and initialize
your database (if your project has one):

docker-compose up -d
# Wait some seconds to let the DB container fire up ...
docker-compose exec web ./yii migrate

Finally you need to set write permissions for some directories. It's sufficient
if the www-data group in the container has write permissions. This way your
local user can still own these directories:

docker-compose exec web chgrp www-data web/assets runtime var/sessions
docker-compose exec web chmod g+rwx web/assets runtime var/sessions

When done, you can access the new app from
http://localhost:8080.

3.2 Development Session

A development session will usually go like this:

docker-compose up -d
# edit files, check, tests, ...
git add .
git commit -m 'Implemented stuff'
docker-compose stop

Note: Another approach is to leave a terminal window open and start the
container with

docker-compose up

This way you can always follow the live logs of your container. To stop all
containers, press Ctrl-c.

3.2.1 Running yiic Commands

If you need to run yiic commands you execute them in the running development
container:

docker-compose exec web ./yiic migrate/create add_column_name

Note: If a command creates new files on your host (e.g. a new migration)
you may have to change file permissions to make them writeable on your host
system:

chown -R mike migrations/*

3.2.2 Adding or Updating Composer Packages

The procedure for adding or updating composer packages is the same as described
in 2.2 above. Remember that you have to rebuild the base image afterwards. It
should probably also receive an updated version tag.

3.2.3 Working with Complex Local Configuration

Sometimes you may have to add complex parts to config/web.php but want
to avoid the risk of accidentally committing them. You therefore can activate
support for a config/local.php file in your .env. This config file will
be merged into config/web.php.

# Whether to load config/(local, console-local).php. Default is 0.
ENABLE_LOCALCONF=1

3.2.3 Make Composer Packages Available Locally

For some IDEs it's useful to have the composer packages available on your local
host system. To do so you can simply copy them from inside the container:

docker-compose exec web cp -rf /var/www/vendor ./

Note: Inside the container composer packages live in /var/www/vendor
instead of the app's ./vendor directory. This way we don't override the
vendor directory when we map the local app directory into the container.

3.2.3 Configuring Cron Jobs

To run periodic jobs the integrated crond (busybox implementation) can be
activated by setting ENABLE_CROND=1 in the docker-compose.yml file.

Cron jobs are added in config/crontabs/<username>. There's an example file
for www-data included. When changing a file there the container must be
restarted to activate the crontab.

主要指标

概览
名称与所有者codemix/yii2-dockerized
主编程语言PHP
编程语言PHP (语言数: 5)
平台
许可证
所有者活动
创建于2015-02-16 13:55:00
推送于2021-02-22 10:42:19
最后一次提交2021-02-22 11:42:14
发布数2
最新版本名称2.0.0-alpha (发布于 )
第一版名称1.0.0-yii-2.0.13 (发布于 )
用户参与
星数167
关注者数14
派生数51
提交数115
已启用问题?
问题数15
打开的问题数1
拉请求数3
打开的拉请求数0
关闭的拉请求数2
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?