Mount-health card showed ~31GB free for the growing SMB share when the NAS actually has multi-TB. mam-api never mounts the CIFS share, so df on the container's /growing path reported the local overlay filesystem. Now query the share's true capacity via 'smbclient -c du' (no mount needed) using the configured credentials; falls back to the local df + surfaces the probe error if the share is unreachable. Added smbclient to the mam-api image.
14 lines
556 B
Docker
14 lines
556 B
Docker
FROM node:22-slim
|
|
# unzip/tar → SDK upload extraction (see routes/sdk.js)
|
|
# smbclient → query the growing-files SMB share's real free space for the
|
|
# storage/Mount-health card (mam-api never mounts the share, so
|
|
# `df` would report the local overlay, not the NAS quota).
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends unzip tar ca-certificates smbclient \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm install --omit=dev
|
|
COPY . .
|
|
EXPOSE 3000
|
|
CMD ["node", "src/index.js"]
|