services/mysql/run.sh
2024-11-29 05:05:23 +01:00

11 lines
216 B
Bash
Executable File

#!/bin/bash
docker run --rm \
--name mysql \
--network unitservices \
-e MYSQL_ROOT_PASSWORD=placeholder \
--publish 3306:3306/tcp \
mysql
# TODO: After testing is done, the published port can be removed