Skip to content

A preconfigured elasticms application in a Docker container

Notifications You must be signed in to change notification settings

ems-project/elasticms-admin-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

elasticms-admin-docker Docker Build

ElasticMS in Docker containers

Build

To automate the build and testing of this image, we rely on a Makefile that facilitates the construction and testing of a container image for ElasticMS Admin. The Makefile supports both Docker and Podman with Buildah as options for building and testing the image. Additionally, the Dockerfile used for image creation is templated using m4.

Prerequisites

To use this Makefile, you need to have the following installed on your system:

  • Docker or Podman with Buildah (for building and managing containers)
  • Git (for version control)
  • Make (for running the Makefile commands)
  • M4 (for generating the Dockerfile from templates)

Make sure to follow the links provided to install the required tools according to your operating system and platform.

Getting Started

  1. Clone the repository containing the Makefile and navigate to its directory:

    git clone <repository_url>
    cd <repository_directory>
  2. (Optional) If you want to customize the build process, create a .build.env file in the repository directory. This file can define the following environment variables:

    • ELASTICMS_ADMIN_VERSION: The version of ElasticMS Admin to build (default: 5.0.0)
    • DOCKER_IMAGE_NAME: The name of the Docker image to build (default: docker.io/elasticms/admin)

    Make sure to define these variables in the .build.env file using the KEY=VALUE format.

Usage

To use the Makefile, you can run the following commands:

  • make build: Build the Docker image for the production (prd) variant of ElasticMS Admin.
  • make build-dev: Build the Docker image for the development (dev) variant of ElasticMS Admin.
  • make build-all: Build Docker images for both the production and development variants of ElasticMS Admin.
  • make test: Test the Docker image for the production (prd) variant of ElasticMS Admin.
  • make test-dev: Test the Docker image for the development (dev) variant of ElasticMS Admin.
  • make test-all: Test Docker images for both the production and development variants of ElasticMS Admin.
  • make Dockerfile: Generate the Dockerfile from the provided templates.

You can also run make help to see a list of available commands.

Note: By default, the Makefile uses Docker as the container engine. If you want to use Podman with Buildah instead, you have two options:

  1. Set the CONTAINER_ENGINE variable in the .build.env file. Create a .build.env file in the repository directory and define CONTAINER_ENGINE=podman in the file.

  2. Set the CONTAINER_ENGINE environment variable directly when running the Makefile commands:

    make build CONTAINER_ENGINE=podman

Using an environment variable allows you to dynamically switch between Docker and Podman with Buildah without modifying the .build.env file.

Additionally, if you are using Podman as the container engine, you can specify the CONTAINER_TARGET_IMAGE_FORMAT environment variable to choose the image format. By default, the image format is Docker. To create the image in the OCI format, use the following command:

make build CONTAINER_ENGINE=podman CONTAINER_TARGET_IMAGE_FORMAT=oci

To customize the Docker image name and ElasticMS Admin version, you have two options:

  1. Set the DOCKER_IMAGE_NAME and ELASTICMS_ADMIN_VERSION variables in the .build.env file. Create a .build.env file in the repository directory and define the desired values for these variables.

  2. Set the DOCKER_IMAGE_NAME and ELASTICMS_ADMIN_VERSION environment variables directly when running the Makefile commands:

    make build DOCKER_IMAGE_NAME=my-custom-image ELASTICMS_ADMIN_VERSION=6.0.0

Setting these variables allows you to customize the image name and ElasticMS Admin version without modifying the .build.env file.

Please ensure that you have the necessary dependencies installed as mentioned earlier in the documentation.

Customizing the Build

If you want to customize the build process further, you can modify the .build.env file to set the desired values for the environment variables mentioned earlier. Additionally, you can modify the Dockerfile templates located in the Dockerfiles directory. The Makefile uses m4 to generate the final Dockerfile from the templates.

To regenerate the Dockerfile after modifying the templates, run the following command:

make Dockerfile

Testing

The Makefile uses Bats (Bash Automated Testing System) to test the Docker images. The test cases are defined in the test/tests.bats file. Before running the tests, make sure you have the following dependencies installed:

  • Bats: Bats is a TAP-compliant testing framework for Bash. Install Bats by following the instructions in the Bats documentation.
  • AWS CLI: The AWS CLI is required to execute certain tests. Install the AWS CLI by following the instructions in the AWS CLI user guide.
  • npm: npm is the package manager for JavaScript. Install npm by following the instructions in the npm documentation.
  • gettext: gettext is a package that provides internationalization (i18n) support. Install gettext by following the instructions for your specific operating system.
  • Docker: If you're using Docker as the container engine, you need to have Docker installed. Follow the instructions in the Docker documentation to install Docker.
  • Docker Compose: Docker Compose is required for certain tests that use Docker Compose functionality. Install Docker Compose by following the instructions in the Docker Compose documentation.
  • Podman (with Podman Compose): If you're using Podman as the container engine, you need to have Podman and Podman Compose installed. Install Podman by following the instructions in the Podman documentation. Install Podman Compose by following the instructions in the Podman Compose documentation.

To run the tests, make sure to configure the desired container engine (Docker or Podman) using the CONTAINER_ENGINE environment variable. The Makefile will execute the tests accordingly.

To run the tests, use the following commands:

  • make test: Test the Docker image for the production (prd) variant of ElasticMS Admin using the configured container engine.
  • make test-dev: Test the Docker image for the development (dev) variant of ElasticMS Admin using the configured container engine.
  • make test-all: Test Docker images for both the production and development variants of ElasticMS Admin using the configured container engine.

You can also specify the DOCKER_IMAGE_NAME and ELASTICMS_ADMIN_VERSION variables to customize the image name and version used for testing. For example:

make test DOCKER_IMAGE_NAME=my-custom-image ELASTICMS_ADMIN_VERSION=6.0.0 CONTAINER_ENGINE=podman

The Bats test suite includes multiple test cases that validate the functionality and behavior of the ElasticMS Admin container image. It covers various aspects of the image, including its configuration, dependencies, and expected output. The test suite ensures the integrity and correctness of the container image.

Releases

Releases are done via GitHub actions and uploaded on Docker Hub.

Supported tags and respective Dockerfile links

Image Variants

The elasticms/admin images come in many flavors, each designed for a specific use case.

docker.io/elasticms/admin:<version>[-prd]

This variant contains the ElasticMS Admin installed in a Production PHP environment.

docker.io/elasticms/admin:<version>-dev

This variant contains the ElasticMS Admin installed in a Development PHP environment.

Configuration

Environment variables

Variable Name Description Default Example
CLI_PHP_MEMORY_LIMIT Refers to the PHP memory limit of the Symfony CLI. This variable can be defined per project or globally for all projects. Or even defined globally and overridden per project. To define it globally use regular environment mechanisms, such -e attribute in docker command. To defnie it per projet, define this variable in the project's Dotenv file. More information about the php_limit directive. 512M 2048M
JOBS_ENABLED Use Supervisord for ems jobs running (ems:job:run). N/A true
JOBS_OPTS Add parameters to ems:job:run command. N/A -v
CHECK_ALIAS_OPTS Add parameters to ems:check:aliases command. -repair -repair -v
PUID Define the user identifier 1001 1000
APACHE_CUSTOM_ASSETS_RC Rewrite condition that prevent request to be treated by PHP, typically bundles or assets ^\"+.alias+\"/bundles /bundles/
APACHE_X_FRAME_OPTIONS The X-Frame-Options HTTP response header can be used to indicate whether or not a browser should be allowed to render a page in a <frame>, <iframe>, <embed> or <object>. SAMEORIGIN DENY
APACHE_X_XSS_PROTECTION The HTTP X-XSS-Protection response header is a feature of Internet Explorer, Chrome and Safari that stops pages from loading when they detect reflected cross-site scripting (XSS) attacks. 1 1; mode=block, 0
APACHE_X_CONTENT_TYPE_OPTIONS The X-Content-Type-Options response HTTP header is a marker used by the server to indicate that the MIME types advertised in the Content-Type headers should be followed and not be changed. nosniff ``

METRIC_ENABLED

Return ElasticMS Prometheus metrics.

Variable Name Description Default
METRICS_ENABLED Add metrics dedicated vhost running on a specific port (9090). empty
METRICS_VHOST_SERVER_NAME Apache ServerName directive used for dedicated vhost. $(hostname -i)

6.x ( PHP v8.4 - Road to ReadOnly Containers ... )

  • paths :

    • /opt/(configs|secrets) -> /app/config/elasticms -> plus de distinction entre secrets et configmaps

    • /opt/src -> /app/src/elasticms

    • /opt/bin -> /app/sbin ( scripts créés dynamiquement , peut-etre être un volume )

    • /tmp -> /app/tmp/elasticms.d

    • /var/lib/ems -> deleted

  • utilisation des variables environment non prefixee dans les scripts

    • METRICS_ENABLED vs EMS_METRIC_ENABLED
  • rename variables METRICS_VHOST_SERVER_NAME_CUSTOM -> METRICS_VHOST_SERVER_NAME

  • use gtpl ald. tmpl pour éviter gomplate standard de l'image de base. les templates reprennent des variables lues plus tard (dans les fichiers de config ems)