This Docker image runs the database server (which is MariaDB a real open-source fork of MySQL)
The tag (i.e. "v88") represents the version of the database schema Please refer to https://www.xqual.com/documentation/install/install_xstudio_docker.html#Versions to use a version compatible with the xqual/xstudio-tomcat image's version.
The docker needs a few parameters to be customized with your own preferences:
| Parameter | Description | Example |
|---|---|---|
| MYSQL_ROOT_PASSWORD | Root password of the MariaDB database server | rootpwd |
| MYSQL_DATABASE | Name of the database that will host XStudio's data | xstudiodb |
| MYSQL_USER | Name of the MariaDB account that XStudio will use | xstudio |
| MYSQL_PASSWORD | Clear password of the MariaDB account that XStudio will use | xstudiopwd |
Based on the above example values, the image can be run individually in a container using the command:
docker run --name xstudio-mariadb-container --publish 3306:3306
-e MYSQL_ROOT_PASSWORD=rootpwd
-e MYSQL_DATABASE=xstudio_db
-e MYSQL_USER=xstudio
-e MYSQL_PASSWORD=xstudiopwd
xqual/xstudio-mariadb:v88
It is not really useful to run this container by itself though. You should use Docker-compose to run it as part as an integrated instance. More details here: https://www.xqual.com/documentation/install/install_xstudio_docker.html
Content type
Image
Digest
sha256:2f5fc330d…
Size
121.8 MB
Last updated
4 days ago
docker pull xqual/xstudio-mariadb:v100