fix(docker): correct volume paths and set working directory for Calmerge

This commit is contained in:
ryan 2025-05-21 15:29:00 +03:00
parent cf304efe61
commit e4f1926cb8
2 changed files with 3 additions and 3 deletions

View file

@ -9,6 +9,6 @@ services:
- NODE_ENV=production
- NODE_PORT=3012
volumes:
- ./calendar:/app/calendar
- ./logs:/app/logs
- ./calendar:/Calmerge/calendar
- ./logs:/Calmerge/logs
restart: unless-stopped

View file

@ -2,7 +2,7 @@
FROM node:18-alpine
# Set working directory inside the container
WORKDIR /usr/src/app
WORKDIR /Calmerge
# Copy package.json and package-lock.json for installing dependencies
COPY package*.json ./