Skip to main content

Nginx Static Error Pages

· One min read

Overview

Provides a mechanism for returning a static page when a non-200 event occurs.

These static pages include:

  • Overview of the error
  • The request ID for tracing
  • Dark mode

These pages are overridable during application packaging and can be customized to align with your sites design.

Pull Request Documentation

Container Repository Per Environment for Database Images

· One min read

Overview

Database images are now packaged and pushed to a dedicated repository for each environment.

This update enables us to securely manage database images by restricting them to their respective environments.

Developers are required to update their database image references.

How to update

Before

xxxxxxxxx.dkr.ecr.ap-southeast-2.amazonaws.com/skpr-example-project/mysql:dev-default-latest

After

xxxxxxxxx.dkr.ecr.ap-southeast-2.amazonaws.com/skpr-example-project/mysql/dev:default-latest

Note that mysql:dev-default-latest became mysql/dev:default-latest in th example above.

What do I update?

The database image it typically referenced in:

  • Docker Compose
  • CI/CD configuration (CircleCI/Github Actions)

ImageMagick PECL Extension

· One min read

Overview

The ImageMagick PECL extension has been added to our Alpine Linux repository.

The extension can be intalled with the following command:

RUN apk add php8.4-imagick

PHP 8.4

· One min read

Overview

We have introduced initial support for PHP 8.4 in our latest PHP image channel, enabling development teams to test their applications with the newest version of PHP.

Below is a list of all the container images with PHP 8.4 support.

docker.io/skpr/php:8.4-v2-latest
docker.io/skpr/php-fpm:8.4-v2-latest
docker.io/skpr/php-fpm:8.4-dev-v2-latest
docker.io/skpr/php-cli:8.4-v2-latest
docker.io/skpr/php-cli:8.4-dev-v2-latest
docker.io/skpr/php-circleci:8.4-v2-latest
docker.io/skpr/php-circleci:8.4-node18-v2-latest
docker.io/skpr/php-circleci:8.4-node20-v2-latest
docker.io/skpr/php-circleci:8.4-node22-v2-latest