mirror of
https://github.com/simon-ding/polaris.git
synced 2026-03-10 19:50:54 +08:00
12 lines
200 B
Bash
12 lines
200 B
Bash
#!/bin/bash
|
|
|
|
groupadd -g ${PGID} abc
|
|
useradd abc -u ${PUID} -g ${PGID} -m -s /bin/bash
|
|
|
|
## 重设权限
|
|
chown -R abc:abc /app/data
|
|
|
|
umask ${UMASK:-022}
|
|
|
|
cd /app
|
|
exec gosu chown -R abc:abc /app/polaris |