wallabag / docker

Official docker-composer for wallabag.
572 stars 150 forks source link

FastCGI / PHP error whenever I try to import from Pocket #367

Open willthong opened 10 months ago

willthong commented 10 months ago

Environment

Import from Pocket. I get this error: ``` *53 FastCGI sent in stderr: "PHP message: PHP Warning: file_put_contents(/var/www/wallabag/data/site-credentials-secret-key.txt): Failed to open stream: Permission denied in /var/www/wallabag/src/Wallabag/CoreBundle/Helper/CryptoProxy.php on line 26PHP message: PHP Warning: chmod(): No such file or directory in /var/www/wallabag/src/Wallabag/CoreBundle/Helper/CryptoProxy.php on line 27PHP message: PHP Warning: file_get_contents(/var/www/wallabag/data/site-credentials-secret-key.txt): Failed to open stream: No such file or directory in /var/www/wallabag/src/Wallabag/CoreBundle/Helper/CryptoProxy.php on line 30" while reading response header from upstream, client: , server: _, request: "GET /quickstart HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "", referrer: "/quickstart" ``` This is my docker-compose.yml: ``` version: '3' services: wallabag: image: wallabag/wallabag environment: - SYMFONY__ENV__DATABASE_DRIVER=pdo_sqlite - SYMFONY__ENV__DATABASE_TABLE_PREFIX="wallabag_" - SYMFONY__ENV__MAILER_DSN=smtp://127.0.0.1 - SYMFONY__ENV__FROM_EMAIL=wallabag@example.com - SYMFONY__ENV__DOMAIN_NAME= - SYMFONY__ENV__SERVER_NAME="Will's Wallabag" ports: - 8395:80 volumes: - /AppData2/Wallabag/images:/var/www/wallabag/web/assets/images - /AppData2/Wallabag/data:/var/www/wallabag/data healthcheck: test: ["CMD", "wget" ,"--no-verbose", "--tries=1", "--spider", "http://localhost"] interval: 1m timeout: 3s depends_on: - redis redis: image: redis:alpine healthcheck: test: ["CMD", "redis-cli", "ping"] interval: 20s timeout: 3s ``` Any help appreciated - thank you!

What steps will reproduce the bug?