* up and set concrete mariadb 11.8.5

+ ldap for php 8.4
This commit is contained in:
WP Studio
2026-02-11 14:40:23 +03:00
parent ba8cd54ba1
commit 4ff85e1215
3 changed files with 17 additions and 1 deletions

View File

@ -67,7 +67,7 @@ services:
- user_known_hosts
- composer_auth
db:
image: mariadb:11
image: mariadb:11.8.5
restart: always
environment:
MYSQL_ROOT_PASSWORD: 123456

View File

@ -4,4 +4,6 @@ FROM dimti/php:8.4
ARG PHP_VERSION=8.4
ENV PHP_VERSION ${PHP_VERSION}
RUN docker-php-ext-install ldap
INCLUDE+ ./php.base.Dockerfile

View File

@ -4,4 +4,18 @@ FROM dimti/workspace:8.4
ARG PHP_VERSION=8.4
ENV PHP_VERSION ${PHP_VERSION}
USER root
INCLUDE+ ./workspace.base.Dockerfile
# once please
RUN apt update -qq
RUN apt-get install -qq php${PHP_VERSION}-ldap
RUN apt-get install -qq sudo
RUN 'laradock ALL=(ALL) NOPASSWD: ALL' > /etc/sudoers.d/laradock
# Clean up
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*