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.7.4 of ska-tango-images provides the 11.8.3 tag of the ska-tango-images-tango-db OCI image.
The image uses the MariaDB docker image as a base image, using the 11.8.3-noble tag.
The Tango table is built using the 5.26 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.8.3
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.