mirror of
https://github.com/koel/koel.git
synced 2026-04-25 16:56:02 +03:00
[GH-ISSUE #1800] Failed to install at production.ERROR: App\Exceptions\InstallationFailedException in /var/www/html/vendor/laravel/framework/src/Illuminate/Support/helpers.php:330 #998
Labels
No labels
Authentication
Dependencies
Documentation
Feature Request
Flac
Help Wanted
Installation/Setup
Integration
Mobile
PR Welcome
Pending Release
Performance
Playlist
S3
Search
Sync
[Pri] Low
[Pri] Normal
[Status] Keep Open
[Status] Needs Author Reply
[Status] Needs Review
[Status] Stale
[Status] Will Implement
[Type] Blessed
[Type] Bug
[Type] Duplicate
[Type] Enhancement
[Type] Help Request
[Type] Question
[Type] Task
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/koel-koel#998
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Anduin2017 on GitHub (Jul 21, 2024).
Original GitHub issue: https://github.com/koel/koel/issues/1800
Describe the bug
A clear and concise description of what the bug is.
Crash when I call
koel:initTo reproduce
Steps to reproduce the behavior:
Environment

Additional context
Add any other context about the problem here.
@phanan commented on GitHub (Jul 21, 2024):
Please don't run installation scripts in Docker as root. Also what were you trying to do with db:wipe?
@phanan commented on GitHub (Jul 21, 2024):
Actually I think I found your problem. You're saying you're using Docker, but you're not following Docker's installation instructions. For example, you're running
artisan koel:initwithout the--no-assetsflag, which will fail on Docker because it triggers front-end compilation and Docker doesn't include a Node environment. This is evident in your screenshot.@Anduin2017 commented on GitHub (Jul 21, 2024):
Tried:
And it works! THanks!