ska-tango-images-tango-db

This image provides a MariaDB instance loaded with a Tango database table, provided by TangoDatabase. This MariaDB instance can be used by ska-tango-images-tango-databaseds to provide a TANGO_HOST for your control system.

Summary

Release 0.6.0 of ska-tango-images provides the 11.2.6 tag of the ska-tango-images-tango-db OCI image.

The image uses the MariaDB docker image as a base image, using the 11.2.6-jammy tag.

The Tango table is built using the 5.23 release of TangoDatabase.

Usage Example

To launch the database with a “tango” user and a “tango” password, run the following:

docker run --name tango-db -p 3306:3306 --detach --rm \
   --env MYSQL_ROOT_PASSWORD=secret \
   --env MYSQL_PASSWORD=tango \
   --env MYSQL_USER=tango \
   --env MYSQL_DATABASE=tango \
   artefact.skao.int/ska-tango-images-tango-db:11.2.6

The database will be available at the TCP port localhost:3306.

The database can then be stopped with the following, when it will be automatically removed:

docker stop tango-db

Note, any changes made to the database will be lost.