0

我正在使用此映像pantsel/konga并将其部署到 openshift 但我收到此错误

error: Bootstrap encountered an error: (see below)
error: Error: EACCES: permission denied, mkdir './kongadata/uploads'

这是我的码头文件

FROM pantsel/konga
ENV NODE_ENV=production
ENV DB_ADAPTER=postgres
ENV DB_URI=postgresql://konga:konga@postgresql-kong.unicorn1.svc:5432/konga
ENV TOKEN_SECRET=some_secret_token

EXPOSE 1337

我该如何解决?请帮我

4

1 回答 1

0

根据这个问题

这不是错误。您只需要自己定义一个目录的存储路径,Konga 将通过 env var 获得访问权限,STORAGE_PATH正如您在日志中看到的那样

你可以试试

FROM pantsel/konga
ENV NODE_ENV=production
ENV DB_ADAPTER=postgres
ENV STORAGE_PATH=$HOME/konga
于 2019-11-19T06:23:36.410 回答