Skip to main content

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

PHP Sendmail Path Updated

· One min read

Overview

The PHP sendmail_path configuration has been updated for compatibility for Symfony mailer support.

  • from = /usr/local/bin/skprmail
  • to = /usr/local/bin/skprmail -t -i

Mail v1.0.0

· One min read

Overview

The skprmail binary has been upgraded to v1.0.0.

This update upgrades the version of Go from 1.21 to 1.23 and marks the project as feature complete.