Hi,
is it possible to run a docker command on a service image. My pipeline uses a mariadb service and I want to change the config of the database like:
docker run --name some-mariadb -e MYSQL_ROOT_PASSWORD=my-secret-pw -d mariadb:tag --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
Is this possible or do I have to create my own database image with the config?
Thanks for help.
Regards,
Timotheus