mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-21 19:03:02 +00:00
Fix permission issue with ublock extension
This commit is contained in:
parent
5cd6d773db
commit
0dd05b9269
2 changed files with 8 additions and 4 deletions
|
@ -111,7 +111,9 @@ RUN apk update && apk add nodejs npm chromium
|
|||
RUN npm install -g https://github.com/sissbruecker/single-file-cli/tarball/4c54b3bc704cfb3e96cec2d24854caca3df0b3b6
|
||||
# copy uBlock
|
||||
COPY --from=ublock-build /etc/linkding/uBOLite.chromium.mv3 uBOLite.chromium.mv3/
|
||||
# create chromium profile folder for user running background tasks
|
||||
RUN mkdir -p chromium-profile && chown -R www-data:www-data chromium-profile
|
||||
# create chromium profile folder for user running background tasks and set permissions
|
||||
RUN mkdir -p chromium-profile && \
|
||||
chown -R www-data:www-data chromium-profile && \
|
||||
chown -R www-data:www-data uBOLite.chromium.mv3
|
||||
# enable snapshot support
|
||||
ENV LD_ENABLE_SNAPSHOTS=True
|
||||
|
|
|
@ -115,7 +115,9 @@ RUN apt-get install -y gnupg2 apt-transport-https ca-certificates && \
|
|||
RUN npm install -g https://github.com/sissbruecker/single-file-cli/tarball/4c54b3bc704cfb3e96cec2d24854caca3df0b3b6
|
||||
# copy uBlock
|
||||
COPY --from=ublock-build /etc/linkding/uBOLite.chromium.mv3 uBOLite.chromium.mv3/
|
||||
# create chromium profile folder for user running background tasks
|
||||
RUN mkdir -p chromium-profile && chown -R www-data:www-data chromium-profile
|
||||
# create chromium profile folder for user running background tasks and set permissions
|
||||
RUN mkdir -p chromium-profile && \
|
||||
chown -R www-data:www-data chromium-profile && \
|
||||
chown -R www-data:www-data uBOLite.chromium.mv3
|
||||
# enable snapshot support
|
||||
ENV LD_ENABLE_SNAPSHOTS=True
|
||||
|
|
Loading…
Reference in a new issue