mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-03-14 20:21:14 +03:00
core: Enable zip extension
This commit is contained in:
parent
fd449be4eb
commit
e07fac777a
3 changed files with 4 additions and 0 deletions
|
@ -8,7 +8,9 @@ RUN apt-get update && \
|
|||
apt-get install --yes --no-install-recommends \
|
||||
nginx \
|
||||
zlib1g-dev \
|
||||
libzip-dev \
|
||||
libmemcached-dev && \
|
||||
docker-php-ext-install zip && \
|
||||
pecl install memcached && \
|
||||
docker-php-ext-enable memcached && \
|
||||
mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
|
||||
|
|
|
@ -69,6 +69,7 @@ RSS-Bridge requires PHP 7.1 or higher with following extensions enabled:
|
|||
- [`curl`](https://secure.php.net/manual/en/book.curl.php)
|
||||
- [`json`](https://secure.php.net/manual/en/book.json.php)
|
||||
- [`filter`](https://secure.php.net/manual/en/book.filter.php)
|
||||
- [`zip`](https://secure.php.net/manual/en/book.zip.php) (for some bridges)
|
||||
- [`sqlite3`](https://www.php.net/manual/en/book.sqlite3.php) (only when using SQLiteCache)
|
||||
|
||||
Find more information on our [Documentation](https://rss-bridge.github.io/rss-bridge/index.html)
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
- [`curl`](https://secure.php.net/manual/en/book.curl.php) extension
|
||||
- [`json`](https://secure.php.net/manual/en/book.json.php) extension
|
||||
- [`filter`](https://secure.php.net/manual/en/book.filter.php) extension
|
||||
- [`zip`](https://secure.php.net/manual/en/book.zip.php) (for some bridges)
|
||||
- [`sqlite3`](http://php.net/manual/en/book.sqlite3.php) extension (only when using SQLiteCache)
|
||||
|
||||
Enable extensions by un-commenting the corresponding line in your PHP configuration (`php.ini`).
|
||||
|
|
Loading…
Add table
Reference in a new issue