docker-run-command.sh
· 210 B · Bash
原始文件
#!/bin/bash
chmod 777 /logs
ln -sf /opt/vendor /app/vendor
ln -sf /app/config/${CONFIG_FILE} /app/config/config.ini
/etc/init.d/php7.4-fpm start && apachectl
pm2-runtime start /opt/builder/ecosystem.config.cjs
| 1 | #!/bin/bash |
| 2 | chmod 777 /logs |
| 3 | ln -sf /opt/vendor /app/vendor |
| 4 | ln -sf /app/config/${CONFIG_FILE} /app/config/config.ini |
| 5 | /etc/init.d/php7.4-fpm start && apachectl |
| 6 | pm2-runtime start /opt/builder/ecosystem.config.cjs |