We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the Docker file provides an ENV variable to allow setting the path_to_config and path_to_tasks directories.
ENV CONFIG_DIR="/config" ENV TASKS_DIR="/tasks"
However the Entry point does not consider this and hardcodes it in the chown commands
ENTRYPOINT mkdir -p /config/stylesheets/ && \ mkdir -p /config/images/ && \ mkdir -p /config/sort/ && \ cp -r /config/stylesheets/. /stylesheets/ && \ cp -r /stylesheets/. /config/stylesheets/ && \ chown -R $PUID:$PGID /config && \ chown -R $PUID:$PGID /tasks && \ node /api/server.js
The text was updated successfully, but these errors were encountered:
Fixed by #116
Sorry, something went wrong.
Reopened as I couldn't finish the changes I wanted for the next release. Added a new tag to track it properly.
Fix included in the latest release
No branches or pull requests
the Docker file provides an ENV variable to allow setting the path_to_config and path_to_tasks directories.
However the Entry point does not consider this and hardcodes it in the chown commands
The text was updated successfully, but these errors were encountered: