Sign inSign up

thespider/php-mysqli

By thespider

•Updated 7 days ago

Image
0

10K+

thespider/php-mysqli repository overview

⁠Supported tags

  • latest

⁠Quick Reference

⁠Base Image

This image is based off the the official php docker image⁠.

⁠Updates

This image is automatically updated every 7 days and includes a step to perform an apt update/upgrade to address security fixes and/or vulnerability remediations.

⁠Inclusion of Custom Root CA

As you can see from the dockerfile⁠ below, this build includes a custom internal root certificate authority to trust custom resources. Realistically, this impact should be minimal, as the certificates generated from this CA are not publicly used. However, this may be a valid concern/issue for you and/or your organization. If you have any issue with this, please don't use this image. You can use the Dockerfile below to build/maintain your own image without the included root certificate authority.

⁠Dockerfile

FROM docker.io/library/php:apache

LABEL org.opencontainers.image.authors="The_Spider <[email protected]>"
LABEL org.opencontainers.image.title="php-mysqli"
LABEL org.opencontainers.image.description="Docker container for php with mysqli served by apache"
LABEL org.opencontainers.image.base.name=""docker.io/library/php:apache"

COPY test-chamber-13.lan.root.crt /usr/local/share/ca-certificates/test-chamber-13.lan.root.crt

RUN apt-get update && \
    apt-get upgrade -y && \
    apt-get autoremove -y && \
    apt-get clean && \
    rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/* && \
    docker-php-ext-install mysqli

Tag summary

Content type

Image

Digest

sha256:fd8194557…

Size

173.5 MB

Last updated

7 days ago

docker pull thespider/php-mysqli