mirror of
https://github.com/simon-ding/polaris.git
synced 2026-02-25 13:10:46 +08:00
9 lines
136 B
Bash
9 lines
136 B
Bash
#!/bin/bash
|
|
|
|
## 重设权限
|
|
chown -R "${PUID}:${PGID}" /app/data
|
|
|
|
umask ${UMASK:-022}
|
|
|
|
cd /app
|
|
exec gosu "${PUID}:${PGID}" /app/polaris |