gitignore
This commit is contained in:
parent
15cd52852f
commit
4b1e94a7fa
4 changed files with 44 additions and 0 deletions
2
runner/.env.default
Normal file
2
runner/.env.default
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
USER_UID=1000
|
||||
USER_GID=1000
|
||||
14
runner/setup.sh
Normal file
14
runner/setup.sh
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
mkdir -p data
|
||||
touch data/.runner
|
||||
mkdir -p data/.cache
|
||||
|
||||
chown -R 1001:1001 data/.runner
|
||||
chown -R 1001:1001 data/.cache
|
||||
chmod 775 data/.runner
|
||||
chmod 775 data/.cache
|
||||
chmod g+s data/.runner
|
||||
chmod g+s data/.cache
|
||||
Loading…
Add table
Add a link
Reference in a new issue