sandstein/mariadb
prefabricated maridb images for development
1.4K
A slim debian with aditional user ssh to use for port forwarding. To use in own context add this to your Dockerfile
ARG USER_ID=1000
ARG GROUP_ID=1000
RUN modify-ids ssh ${USER_ID} ${GROUP_ID}
An apache (2.4) webserver container. Use
ARG USER_ID=33
ARG GROUP_ID=33
RUN modify-user-ids www-data ${USER_ID} ${GROUP_ID}
in your Dockerfile to run it as your current user.
A collection of all mayor PHP versions as fpm and cli. Use
ARG USER_ID=33
ARG GROUP_ID=33
RUN modify-user-ids www-data ${USER_ID} ${GROUP_ID}
for the fpm containers and
ARG USER_ID=33
ARG GROUP_ID=33
RUN modify-user-ids phpcli ${USER_ID} ${GROUP_ID}
for the cli containers
Add the following to your Dockerfiles in order to be able to disable module on build time
ARG DISABLED_PHP_CLI_MODULES=''
RUN disable-php-modules ${DISABLED_PHP_CLI_MODULES}
For fpm containers use the following:
ARG DISABLED_PHP_FPM_MODULES=''
RUN disable-php-modules ${DISABLED_PHP_FPM_MODULES}
Use
ARG USER_ID=999
ARG GROUP_ID=999
RUN modify-ids mysql ${USER_ID} ${GROUP_ID}
for user customisation
docker pull sandstein/mariadb