6 lines
87 B
Bash
6 lines
87 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
chown -R nonroot:nonroot /app/db /app/uploads
|
|
|
|
exec gosu nonroot "$@" |