docker-run-command.sh
· 164 B · Bash
Eredeti
#!/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 start
| 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 start |