9 lines
106 B
Bash
9 lines
106 B
Bash
#!/bin/sh
|
|
|
|
service mariadb start
|
|
# Run the CMD that was passed (or default)
|
|
exec "$@"
|
|
|
|
tail -f /dev/null
|
|
|