Skip to content

Commit 825625b

Browse files
committed
Added "procps" package for Debian. Fixes #476
1 parent 18f33ea commit 825625b

6 files changed

Lines changed: 6 additions & 5 deletions

File tree

docs/content/docs/2.getting-started/3.default-configurations.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ The following packages are installed by default:
8585
|-------------|-----------------|----------------------|------------------------|
8686
| `libfcgi-bin`<br/>(Debian)<br/>`fcgi`<br/>(Alpine) | FastCGI is a protocol for interfacing interactive programs with a web server. | *-fpm <br/> *-fpm-nginx <br/> *-fpm-apache | This is required for the webserver to interface with PHP-FPM and the [`php-fpm-healthcheck`](https://github.com/renatomefi/php-fpm-healthcheck) project. |
8787
| `gettext-base` (Debian) <br/> `gettext` (Alpine) | GNU gettext is a framework for translating user interfaces. | *-fpm-nginx <br/> *-fpm-apache | This is required for the `envsubst` command. We use this command to process templates on container initialization. |
88+
| `procps` (Debian) | The procps package contains programs for monitoring your system and its processes. | * (Debian images) | This is required for `pgrep` so we can use that for our native health checks. |
8889
| `shadow` | Shadow is required for the `usermod` command. | *-alpine | This is required to change the UID and GID of the `www-data` user in `docker-php-serversideup-set-id`. |
8990

9091
## Health Checks

src/variations/cli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ARG PHP_VARIATION='cli'
88
FROM php:${PHP_VERSION}-${PHP_VARIATION}-${BASE_OS_VERSION}
99

1010
ARG DEPENDENCY_PACKAGES_ALPINE='shadow'
11-
ARG DEPENDENCY_PACKAGES_DEBIAN='zip'
11+
ARG DEPENDENCY_PACKAGES_DEBIAN='procps zip'
1212
ARG DEPENDENCY_PHP_EXTENSIONS='opcache pcntl pdo_mysql pdo_pgsql redis zip'
1313
ARG REPOSITORY_BUILD_VERSION='dev'
1414

src/variations/fpm-apache/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN docker-php-serversideup-s6-install
2222
##########
2323
FROM ${BASE_IMAGE}
2424
ARG DEPENDENCY_PACKAGES_ALPINE='fcgi apache2 shadow'
25-
ARG DEPENDENCY_PACKAGES_DEBIAN='libfcgi-bin apache2 zip'
25+
ARG DEPENDENCY_PACKAGES_DEBIAN='libfcgi-bin apache2 procps zip'
2626
ARG DEPENDENCY_PHP_EXTENSIONS='mysqli opcache pcntl pdo_mysql pdo_pgsql redis zip'
2727
ARG REPOSITORY_BUILD_VERSION='dev'
2828

src/variations/fpm-nginx/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ RUN docker-php-serversideup-dep-install-debian "curl gnupg2 ca-certificates lsb-
5252
##########
5353
FROM ${BASE_IMAGE}
5454
ARG DEPENDENCY_PACKAGES_ALPINE='fcgi nginx gettext shadow'
55-
ARG DEPENDENCY_PACKAGES_DEBIAN='libfcgi-bin nginx gettext-base zip'
55+
ARG DEPENDENCY_PACKAGES_DEBIAN='libfcgi-bin nginx gettext-base procps zip'
5656
ARG DEPENDENCY_PHP_EXTENSIONS='opcache pcntl pdo_mysql pdo_pgsql redis zip'
5757
ARG REPOSITORY_BUILD_VERSION='dev'
5858

src/variations/fpm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ARG PHP_VARIATION='fpm'
88
FROM php:${PHP_VERSION}-${PHP_VARIATION}-${BASE_OS_VERSION}
99

1010
ARG DEPENDENCY_PACKAGES_ALPINE='fcgi shadow'
11-
ARG DEPENDENCY_PACKAGES_DEBIAN='libfcgi-bin zip'
11+
ARG DEPENDENCY_PACKAGES_DEBIAN='libfcgi-bin procps zip'
1212
ARG DEPENDENCY_PHP_EXTENSIONS='opcache pcntl pdo_mysql pdo_pgsql redis zip'
1313
ARG REPOSITORY_BUILD_VERSION='dev'
1414

src/variations/unit/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ RUN set -ex && \
6363
FROM ${BASE_IMAGE}
6464

6565
ARG DEPENDENCY_PACKAGES_ALPINE='gettext'
66-
ARG DEPENDENCY_PACKAGES_DEBIAN='gettext-base zip'
66+
ARG DEPENDENCY_PACKAGES_DEBIAN='gettext-base procps zip'
6767
ARG DEPENDENCY_PHP_EXTENSIONS='opcache pcntl pdo_mysql pdo_pgsql redis zip'
6868
ARG REPOSITORY_BUILD_VERSION='dev'
6969

0 commit comments

Comments
 (0)