11 lines
216 B
Bash
Executable File
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
|