I'm getting started with Docker, so the question came, what's the docker-php-ext-configure and docker-php-ext-install ?
Example:
RUN apt-get install -y libpq-dev libsqlite3-dev
RUN docker-php-ext-configure pgsql -with-pgsql=/usr/local/pgsql
RUN docker-php-ext-install pdo pdo_mysql pgsql pdo_pgsql pdo_sqlite
I do not understand what the purpose of these is. Would not it be the same as using apt-get install pdo pdo_mysql ...?