mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-04-20 04:19:18 +00:00
6 lines
254 B
Bash
6 lines
254 B
Bash
|
#!/bin/sh
|
||
|
addgroup -g ${GID} zerobin && adduser -h /zerobin -s /bin/sh -D -G zerobin -u ${UID} zerobin
|
||
|
touch /var/run/php-fpm.sock
|
||
|
chown -R zerobin:zerobin /zerobin /var/run/php-fpm.sock /var/lib/nginx /tmp
|
||
|
supervisord -c /usr/local/etc/supervisord.conf
|