You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello!
In docker image with superset 1.4.1 celery beat works as expected, but in docker image with superset 1.5.1 it fails with error Permission denied: 'celerybeat-schedule'
As I understand it, the problem is that /home/superset owned by root in docker image with superset 1.5.1.
Celery beat try to create celerybeat-schedule directory, but fails, because docker image run under superset user, but /home/superset (this is WORKDIR of docker image) owned by root.
May be this problem appeared after Dockerfile refactoring.
The text was updated successfully, but these errors were encountered:
Hello!
In docker image with superset 1.4.1 celery beat works as expected, but in docker image with superset 1.5.1 it fails with error
Permission denied: 'celerybeat-schedule'
As I understand it, the problem is that
/home/superset
owned by root in docker image with superset 1.5.1.Celery beat try to create
celerybeat-schedule
directory, but fails, because docker image run undersuperset
user, but/home/superset
(this is WORKDIR of docker image) owned byroot
.May be this problem appeared after Dockerfile refactoring.
The text was updated successfully, but these errors were encountered: