You've already forked DataMate
* fix: fix the path for backend-python imaage building * feature: add mysql collection and starrocks collection * feature: add mysql collection and starrocks collection * fix: change the permission of those files which collected from nfs to 754 * fix: delete collected files, config files and log files while deleting collection task * fix: add the collection task detail api * fix: change the log of collecting for dataset * fix: add collection task selecting while creating and updating dataset * fix: set the umask value to 0022 for java process
9 lines
79 B
Bash
9 lines
79 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
umask 0022
|
|
|
|
echo "Starting main application..."
|
|
exec "$@"
|