mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-04-17 18:18:11 +00:00
Solving permissions issue with collector/outputs and server/storage (#182)
Solving permissions issue with collector/outputs and server/storage when deploying freshly with docker-compose.
This commit is contained in:
parent
f3a6147ffd
commit
40c610fb1c
1 changed files with 2 additions and 2 deletions
|
@ -63,13 +63,13 @@ RUN cd ./frontend/ && yarn build && yarn cache clean
|
|||
|
||||
# Setup the server
|
||||
FROM server-deps as production-stage
|
||||
COPY ./server/ ./server/
|
||||
COPY --chown=anythingllm:anythingllm ./server/ ./server/
|
||||
|
||||
# Copy built static frontend files to the server public directory
|
||||
COPY --from=build-stage /app/frontend/dist ./server/public
|
||||
|
||||
# Copy the collector
|
||||
COPY ./collector/ ./collector/
|
||||
COPY --chown=anythingllm:anythingllm ./collector/ ./collector/
|
||||
|
||||
# Install collector dependencies
|
||||
RUN cd /app/collector && \
|
||||
|
|
Loading…
Add table
Reference in a new issue