Npm issue during deployment of holos-relay-server with docker #3
Labels
No labels
accessibility
bug
contribution welcome
duplicate
enhancement
good first issue
help wanted
invalid
question
upstream
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
tom79/Holos-Relay-Server#3
Loading…
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?
I am running into an issue during the deployment of the server.
I found and fixed to small things:
.env.docker shall be enhanced with two more variable:
Exporting the variable with
export $(cat .env.docker | xargs)was leading to error on by side:Solution:
export $(grep -v '^#' .env.docker | grep -v '^$' | xargs)Finally docker compose up -d leads to npm error, with which I am not familiar:
Any ideas how to fix the npm issue, or can you update the necessary files on your side?
Just pushed a fix, please pull the latest changes and try again.