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