Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 605 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 605 Bytes

Running locally

docker build --tag paganois-image .
docker run --name paganois -d -e PORT=80 -p 20001:80 -v ${PWD}:/app paganois-image
docker exec -it paganois composer install
docker exec -it paganois php artisan storage:link
docker exec -it paganois php artisan migrate
docker exec -it paganois php artisan db:seed

Enter in container with:

docker exec -it paganois bash

Once inside run the following commands:

chown -R www-data: /app/storage

If you can't save any file, run the following command, outside the container:

sudo chown -R $USER <project_folder>