fix docker ssh issue by downgrading phpseclib

This commit is contained in:
Saeed Vaziry
2025-06-19 21:25:25 +02:00
parent 632a56bf4d
commit 9a3578f3ac
8 changed files with 43 additions and 23 deletions

View File

@ -12,7 +12,7 @@ services:
extra_hosts:
- 'host.docker.internal:host-gateway'
ports:
- '${APP_PORT:-80}:80'
- '${APP_PORT:-8000}:80'
- '${VITE_PORT:-5173}:${VITE_PORT:-5173}'
volumes:
- "vito-storage:/var/www/html/storage"

View File

@ -50,9 +50,6 @@ if [ ! -f "$INIT_FLAG" ]; then
# create sqlite database
touch /var/www/html/storage/database.sqlite
# install default plugins
php /var/www/html/artisan plugins:install https://github.com/vitodeploy/laravel-octane-plugin
# create the flag file to indicate completion of initialization tasks
touch "$INIT_FLAG"
fi