mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
Update Dockerfile
* Add volume to docker compose file
This commit is contained in:
parent
e73293856b
commit
20c1a92885
10
Dockerfile
10
Dockerfile
@ -16,13 +16,19 @@ RUN apk add --no-cache curl bash
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Copy apps
|
||||
COPY --from=builder /app/apps/server/dist /app/apps/server/dist
|
||||
COPY --from=builder /app/apps/client/dist /app/apps/client/dist
|
||||
COPY --from=builder /app/apps/server/package.json /app/apps/server/package.json
|
||||
|
||||
# Copy packages
|
||||
COPY --from=builder /app/packages/editor-ext/dist /app/packages/editor-ext/dist
|
||||
COPY --from=builder /app/packages/editor-ext/package.json /app/packages/editor-ext/package.json
|
||||
|
||||
# Copy root package files
|
||||
COPY --from=builder /app/package.json /app/package.json
|
||||
COPY --from=builder /app/packages/ /app/packages/
|
||||
COPY --from=builder /app/pnpm*.yaml /app/
|
||||
# should optimize packages
|
||||
|
||||
RUN npm install -g pnpm
|
||||
|
||||
RUN chown -R node:node /app
|
||||
|
@ -11,9 +11,12 @@ services:
|
||||
APP_SECRET: 'REPLACE_WITH_LONG_SECRET'
|
||||
DATABASE_URL: 'postgresql://postgres:password@db:5432/docmost?schema=public'
|
||||
REDIS_URL: 'redis://redis:6379'
|
||||
STORAGE_DRIVER: 'local'
|
||||
ports:
|
||||
- "3000:3000"
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- local_storage:/app/data/storage
|
||||
|
||||
db:
|
||||
image: postgres:16-alpine
|
||||
@ -32,5 +35,6 @@ services:
|
||||
- redis_data:/data
|
||||
|
||||
volumes:
|
||||
local_storage:
|
||||
db_data:
|
||||
redis_data:
|
||||
|
Loading…
x
Reference in New Issue
Block a user