web-dev-qa-db-fra.com

Laravel Aucun répertoire existant dans "stockage / journaux"

Je veux exécuter une application Laravel 5.7 avec Docker. Mes conteneurs démarrent OK mais lorsque j'essaie d'exécuter l'application dans le navigateur, j'obtiens une erreur.

Il n'y a pas de répertoire existant dans "/ Users/user/projects/laravel/application/storage/logs" et ce n'est pas constructible: autorisation refusée

J'ai changé les autorisations pour l'ensemble du projet avec ...

Sudo chmod -R 777 /Users/user/projects/laravel/application

Mais rien n'a changé. Sinon, comment résoudre ce problème?

Voici le fichier docker-compose.xml

version: '3'
services:
  web:
    image: nginx
    volumes:
    - "./vhosts.conf:/etc/nginx/conf.d/vhosts.conf"
    - "./application/public:/var/www/html/application/public"
    - "./:/var/www/html"
    - "./logs/nginx/error.log:/var/log/nginx/error.log"
    - "./logs/nginx/access.log:/var/log/nginx/access.log"
    ports:
    - "8000:80"
    environment:
    - NGINX_Host=ld2.web
    restart: always
    depends_on:
    - php
  php:
    image: php:7.2-fpm
    restart: always
    volumes:
    - "./application/storage/php/php.ini:/usr/local/etc/php/conf.d/php.ini"
    - "./application/public:/var/www/html/application/public"
    - "./:/var/www/html"

Voici une sortie de application ls -ls

drwxrwxrwx  26 user  staff     832 Oct 24 14:50 .
drwxrwxrwx   8 user  staff     256 Oct 24 01:06 ..
-rwxrwxrwx   1 user  staff     213 Sep  4 16:12 .editorconfig
-rwxrwxrwx   1 user  staff     704 Oct 24 00:38 .env
-rwxrwxrwx   1 user  staff     655 Sep  4 16:12 .env.example
-rwxrwxrwx   1 user  staff     111 Sep  4 16:12 .gitattributes
-rwxrwxrwx   1 user  staff     177 Sep  4 16:12 .gitignore
drwxrwxrwx   7 user  staff     224 Sep  4 16:12 app
-rw-r--r--   1 user  staff       0 Oct 24 14:56 application.txt
-rwxrwxrwx   1 user  staff    1686 Sep  4 16:12 artisan
drwxrwxrwx   4 user  staff     128 Sep  4 16:12 bootstrap
-rwxrwxrwx   1 user  staff    1527 Sep  4 16:12 composer.json
-rwxrwxrwx   1 user  staff  148959 Oct 24 00:35 composer.lock
drwxrwxrwx  15 user  staff     480 Sep  4 16:12 config
drwxrwxrwx   6 user  staff     192 Sep  4 16:12 database
-rwxrwxrwx   1 user  staff    1022 Sep  4 16:12 package.json
-rwxrwxrwx   1 user  staff    1134 Sep  4 16:12 phpunit.xml
drwxrwxrwx  10 user  staff     320 Sep  4 16:12 public
-rwxrwxrwx   1 user  staff    3924 Sep  4 16:12 readme.md
drwxrwxrwx   6 user  staff     192 Sep  4 16:12 resources
drwxrwxrwx   6 user  staff     192 Sep  4 16:12 routes
-rwxrwxrwx   1 user  staff     563 Sep  4 16:12 server.php
drwxrwxrwx   6 user  staff     192 Oct 24 01:20 storage
drwxrwxrwx   6 user  staff     192 Sep  4 16:12 tests
drwxrwxrwx  40 user  staff    1280 Oct 24 00:41 vendor
-rwxrwxrwx   1 user  staff     537 Sep  4 16:12 webpack.mix.js

ls -la application/stockage

drwxrwxrwx   6 user  staff  192 Oct 24 01:20 .
drwxrwxrwx  27 user  staff  864 Oct 24 15:44 ..
drwxrwxrwx   4 user  staff  128 Sep  4 16:12 app
drwxrwxrwx   7 user  staff  224 Sep  4 16:12 framework
drwxrwxrwx   2 user  staff   64 Oct 24 01:20 logs
drwxrwxrwx   3 user  staff   96 Oct 24 00:43 php
4
Anastasia

Il semble que votre APP_LOG_FILE dans la configuration fasse référence au chemin du fichier journal pour votre machine hôte (c'est-à-dire /Users/user/projects/laravel/application/storage/logs) et défini comme chemin absolu, mais à l'intérieur de votre conteneur, le chemin est différent et en fait est /var/www/html/application/storage/logs. Pouvez-vous le modifier dans le .env et réessayer?

6
Alexey

Vous devez exécuter php artisan config:cache commande dans le dossier conteneur au lieu de votre dossier OS.
Entrez dans votre conteneur php:
docker exec -it your-php-container /bin/bash
allez dans le dossier de projet laravel et configurez le cache:
php artisan config:cache

1
user2991379

Essayez cette commande,

php artisan optimize:clear

Si php artisan donne une erreur puis exécutez,

composer update
1
Satendra Rawat