Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ build-next-8-0:
DOCKER_IMAGE_TAG: next-8.0-rc
PHP_BASEIMAGE_VERSION: $PHP_8_0
XDEBUG_VERSION: master
PHP_EXTENSIONS: "dom exif gd iconv intl mysqli opcache pdo pdo soap xsl zip"
PHP_EXTENSIONS: "dom exif gd iconv intl mysqli opcache pdo_mysql pdo_sqlite soap xsl zip"
CACHE_FROM: $CI_REGISTRY_IMAGE:next-8.0-rc
only:
- next
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ENV \
LD_PRELOAD="/usr/lib/preloadable_libiconv.so php"

ARG XDEBUG_VERSION=2.9.6
ARG PHP_EXTENSIONS="dom exif gd iconv intl json mysqli opcache pdo pdo soap xsl zip"
ARG PHP_EXTENSIONS="dom exif gd iconv intl json mysqli opcache pdo_mysql pdo_sqlite soap xsl zip"

# Install dependencies
RUN { \
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ Docker образ, основанный на Alpine Linux, с установле

| Docker Tag | PHP Version |
| ------------------------------------- | ----------- |
| `latest` / `latest-7.4` / `2.4.0-7.4` | 7.4.9 |
| `latest-7.3` / `2.4.0-7.3` | 7.3.21 |
| `latest-7.2` / `2.4.0-7.2` | 7.2.33 |
| `latest` / `latest-7.4` / `2.4.1-7.4` | 7.4.9 |
| `latest-7.3` / `2.4.1-7.3` | 7.3.21 |
| `latest-7.2` / `2.4.1-7.2` | 7.2.33 |
| `next-8.0-rc` | 8.0.0-rc |

## Быстрый старт
Expand Down