Last active
February 5, 2023 19:39
-
-
Save MalteKiefer/9739e845f9399c2651ab7a3673b2632a to your computer and use it in GitHub Desktop.
Docker Crater Modules
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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