Usually, MariaDB uses data directory specified as a Docker volume that is mounted onto host: this allows retaining data after container restarts.
The MariaDB image in this project uses custom location /usr/lib/db-data
(not
a Docker volume) to store expanded database files. These files then can be
captured as a Docker layer and stored as an image to docker registry.
Image consumers download the image and start containers with instantaneously available data (no time-consuming database imports required).
Technically, majority of the functionality is relying on upstream uselagoon/mariadb-drupal
Docker image.
Entrypoint script had to be copied from upstream script and adjusted to support custom data directory.
Drupal website with a large database.
- CI process builds a website overnight.
- CI process captures the latest database as a new Docker layer in the database image.
- CI process tags and pushes image to the Docker registry.
- Website developers pull the latest image from the registry and build site locally. OR Subsequent CI builds pull the latest image from the registry and build site.
When required, website developers restart docker stack locally with an already imported database, which saves a significant amount of time for database imports.
./seed-db.sh
allows to easily create your own image with "seeded" database.
./seed-db.sh path/to/db.sql myorg/myimage:latest
docker push myorg/myimage:latest
In some cases, shell may report platform incorrectly. Run with forced platform:
DOCKER_DEFAULT_PLATFORM=linux/amd64 ./seed-db.sh path/to/db.sql myorg/myimage:latest
tests/bats/node_modules/.bin/bats tests/bats/data.bats --tap
# or
DOCKER_DEFAULT_PLATFORM=linux/amd64 tests/bats/node_modules/.bin/bats --tap tests/bats/data.bats
This image is built and pushed automatically to DockerHub:
- For all commits to
main
branch ascanary
tag. - For releases as
:<version>
andlatest
tag. - For
feature/my-branch
branches asfeature-my-branch
tag.
Versions are following versions of the upstream image to ease maintenance.
Repository created using https://getscaffold.dev/ project scaffold template