Skip to content

Instantly share code, notes, and snippets.

@MalteKiefer
Last active February 5, 2023 19:39
Show Gist options
  • Save MalteKiefer/9739e845f9399c2651ab7a3673b2632a to your computer and use it in GitHub Desktop.
Save MalteKiefer/9739e845f9399c2651ab7a3673b2632a to your computer and use it in GitHub Desktop.
Docker Crater Modules
#go to crater path
cd /srv/crater/
#create Modules dir
mkdir Modules
#go to folder
cd Modules/
#
#uploads the zip files here
#
#unzip
unzip Payments.zip
#go to crater path
cd /srv/crater/
#fix permissions
chown -R 1000:1000 ../crater/
#install Module
docker-compose exec app php artisan install:module Payments 1.0.0
docker-compose exec app php artisan config:cache
#restart webserver (only when you use it)
service apache2 restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment