Closed DiffuseHyperion closed 1 year ago
Now that I think about it, /bin/certbot would also be affected by this, since they are practically the same script.
Feel free to use docker-compose exec panel php artisan p:user:make. Those scripts are mainly aliases than writing out the full command. Ill investigate that since it seems to affect some distributions.
Did you try to get in bin/
directory and then execute this command? If it doesn't work, try to use bash bin/artisan p:user:make
, might it will work as should it need.
Assuming that you're already running a container with these services. Try to use:
docker exec -it <your_container_panel_id> php artisan p:user:make
.
Then, you will get the input for create a new user.
Updated scripts to use bash instead of sh, this should fix the problem.
Whenever I run
./bin/artisan p:user:make
in the project's root directory, I get the following error:Running
docker compose config --services
outputs this:Showing that panel was indeed running. I found that changing the script to a bash script fixes this, but i'm unsure if you want to keep it as a sh script for compatibility.