mirror of
https://github.com/Termix-SSH/Termix.git
synced 2026-08-24 06:58:15 +00:00
* Add Helm and GitOps deployment setup * fix: build better-sqlite3 from source in Docker (#1267) * fix: preserve runtime SSL settings (#1268) * fix: support forwarding from the memory SSH agent (#1269) * fix: support forwarding from the memory agent * style: format memory agent test * fix: prompt for encrypted SFTP key passphrases (#1270) * fix: prompt for SFTP key passphrases * style: format SSH key utility test * fix: include host context in automation notifications (#1271) * fix: include host context in automation notifications * style: format automation notification changes * fix: reserve sidebar height for host tags (#1272) * fix: keep host action rows stable at large font sizes (#1273) * fix: honor certificate setting during server probe (#1274) * fix: package standard Linux icon sizes (#1275) * fix: avoid duplicate Docker HTTPS listener (#1276) * Fix host status without metrics collection (#1277) * fix: allow eight-digit secure auth codes (#1263) Allow TOTP prompts to accept secure auth codes longer than six digits without blocking valid authentication attempts. Generated with Codebuff 🤖 Co-authored-by: Chetan <chetan.development@gmail.com> Co-authored-by: Codebuff <noreply@codebuff.com> * Harden Helm deployment defaults * Update Helm workflow action * Exclude Helm templates from Prettier * Fix browser RDP file drops (#1279) * Fix Proxmox guest credential usernames (#1280) * Add WSL local terminal option (#1281) * refactor: split the transfer engine into focused modules (#1282) * refactor: extract SFTP promisify helpers into sftp-promisify module * refactor: extract transfer timing and rate stats into transfer-stats module * refactor: extract transfer error classes and recovery checks into transfer-errors module * refactor: extract host/path utility helpers into transfer-host-utils module * refactor: extract SFTP directory tree helpers into transfer-sftp-dir module * refactor: extract segment copy job builder into transfer-segment-copy module * refactor: extract file scan and sample helpers into transfer-scan module * refactor: move throttled progress helper into transfer-stats module * style: format transfer modules * perf: optimize tmux monitor aggregation (#1283) * fix: reserve credential tag row height (#1284) * feat: edit AI provider model settings (#1285) * fix: clarify click-to-expand host setting (#1286) * fix: allow portable imports on remote databases (#1287) * fix: allow HTTPS to share the configured port (#1288) * fix: resolve synced jump hosts on the server (#1289) * fix: make terminal clipboard shortcuts layout independent (#1290) * fix: use compatible fetch dispatcher for Tailscale (#1291) * fix: add OIDC environment recovery override (#1292) * fix: coalesce rapid mobile terminal input (#1293) * fix: coalesce rapid mobile terminal input * fix: support clean xterm patch installs * fix: resolve synced remote desktop host IDs (#1295) * feat: make the SFTP file manager path bar editable (#1294) Co-authored-by: Maxime Bonillo <257463937+dropafterfree@users.noreply.github.com> Co-authored-by: ZacharyZcR <zacharyzcr1984@gmail.com> * feat: add passkey sign in to the login screen * fix: remove rounded corners from the host list search bar * fix: stop image storage settings text wrapping to one word per line * fix: prevent malformed websocket messages from crashing the server * chore: increment version * fix: remove gaps between host rows in the sidebar list Keep sub-pixel row measurements and stop wiping the size cache on hover. * fix: Failed to connect through jump hosts (#1180) https://github.com/Termix-SSH/Support/issues/1180 * feat: Progress bar for file downloads in the file manager (#1158) https://github.com/Termix-SSH/Support/issues/1158 * feat: Allow setting Silent OIDC Login via ENV var (#1174) https://github.com/Termix-SSH/Support/issues/1174 * feat: `IdentityFile` to limit the number of attempts by agents (#1165) https://github.com/Termix-SSH/Support/issues/1165 * feat: Credentials clone (#1159) https://github.com/Termix-SSH/Support/issues/1159 * chore: update release notes * docs: move helm setup guide to the docs site * fix: type errors in FilteredAgent agent identity handling * fix: remove stale better-sqlite3 prebuilds so the source build is used * fix: actually build better-sqlite3 from source so arm64 docker images work * fix: credential edit pencil in host editor and add clone action to credential list * fix: clear editingHost so the credential pencil actually opens the editor * chore: run format and lint * fix: folder drag and drop upload failing in the file manager * chore: sync Crowdin translations for 2.7.1 --------- Co-authored-by: alex-ctms <alex-ctms@users.noreply.github.com> Co-authored-by: ZacharyZcR <zacharyzcr1984@gmail.com> Co-authored-by: Chetan Kumar <74929596+ckloop@users.noreply.github.com> Co-authored-by: Chetan <chetan.development@gmail.com> Co-authored-by: Codebuff <noreply@codebuff.com> Co-authored-by: ZacharyZcR <payasonorahc@protonmail.com> Co-authored-by: dropafterfree <maxime.bonillo@gmail.com> Co-authored-by: Maxime Bonillo <257463937+dropafterfree@users.noreply.github.com>
118 lines
3.8 KiB
Docker
118 lines
3.8 KiB
Docker
# Stage 1: Install dependencies
|
|
FROM node:24-slim AS deps
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && apt-get install -y python3 make g++ && rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY package*.json ./
|
|
COPY .npmrc ./
|
|
COPY vendor ./vendor
|
|
|
|
COPY scripts/patch-guacamole-lite.cjs ./scripts/
|
|
|
|
RUN npm ci --ignore-scripts && \
|
|
node scripts/patch-guacamole-lite.cjs && \
|
|
npm cache clean --force
|
|
|
|
# Stage 2: Build frontend
|
|
FROM deps AS frontend-builder
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN find public/fonts -name "*.ttf" ! -name "*Regular.ttf" ! -name "*Bold.ttf" ! -name "*Italic.ttf" -delete
|
|
|
|
RUN npm cache clean --force && \
|
|
NODE_OPTIONS="--max-old-space-size=3072" npm run build
|
|
|
|
# Stage 3: Build backend
|
|
FROM deps AS backend-builder
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN rm -rf node_modules/better-sqlite3/prebuilds && \
|
|
npm run build-release --prefix node_modules/better-sqlite3 && \
|
|
test -f node_modules/better-sqlite3/build/Release/better_sqlite3.node
|
|
|
|
RUN npm run build:backend
|
|
|
|
# Stage 4: Download OPKSSH binary for the target platform so the image works offline
|
|
FROM node:24-slim AS opkssh-downloader
|
|
ARG TARGETARCH
|
|
ARG OPKSSH_VERSION=v0.16.0
|
|
WORKDIR /opkssh
|
|
|
|
RUN apt-get update && apt-get install -y curl ca-certificates && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN case "$TARGETARCH" in \
|
|
amd64) OPKSSH_ARCH=amd64 ;; \
|
|
arm64) OPKSSH_ARCH=arm64 ;; \
|
|
*) echo "Unsupported architecture: $TARGETARCH" && exit 1 ;; \
|
|
esac && \
|
|
curl -fSL -o "opkssh-linux-${OPKSSH_ARCH}" \
|
|
"https://github.com/openpubkey/opkssh/releases/download/${OPKSSH_VERSION}/opkssh-linux-${OPKSSH_ARCH}" && \
|
|
chmod 755 "opkssh-linux-${OPKSSH_ARCH}" && \
|
|
echo -n "$OPKSSH_VERSION" > version.txt
|
|
|
|
# Stage 5: Production dependencies only
|
|
FROM node:24-slim AS production-deps
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && apt-get install -y python3 make g++ && rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY package*.json ./
|
|
COPY .npmrc ./
|
|
COPY vendor ./vendor
|
|
|
|
COPY scripts/patch-guacamole-lite.cjs ./scripts/
|
|
|
|
RUN npm ci --omit=dev --ignore-scripts && \
|
|
node scripts/patch-guacamole-lite.cjs && \
|
|
rm -rf node_modules/better-sqlite3/prebuilds && \
|
|
npm run build-release --prefix node_modules/better-sqlite3 && \
|
|
test -f node_modules/better-sqlite3/build/Release/better_sqlite3.node && \
|
|
npm rebuild bcryptjs ssh2 && \
|
|
npm cache clean --force
|
|
|
|
# Stage 6: Final optimized image
|
|
FROM node:24-slim
|
|
WORKDIR /app
|
|
|
|
ENV DATA_DIR=/app/data \
|
|
PORT=8080 \
|
|
NODE_ENV=production \
|
|
POSTHOG_API_KEY=phc_xM8UznirsFxUkGE68gH4jzeqevf4kh76wGw7Ci7hH2dd
|
|
|
|
RUN apt-get update && apt-get install -y nginx gettext-base openssl ca-certificates gosu wget certbot python3-certbot-dns-cloudflare && \
|
|
update-ca-certificates && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
mkdir -p /app/data /app/uploads /app/data/.opk /app/nginx /tmp/nginx && \
|
|
chown -R node:node /app /tmp/nginx && \
|
|
chmod 755 /app/data /app/uploads /app/data/.opk /app/nginx /tmp/nginx
|
|
|
|
COPY docker/nginx.conf /app/nginx/nginx.conf.template
|
|
COPY docker/nginx-https.conf /app/nginx/nginx-https.conf.template
|
|
|
|
COPY --chown=node:node --from=frontend-builder /app/dist /app/html
|
|
|
|
COPY --chown=node:node --from=production-deps /app/node_modules /app/node_modules
|
|
COPY --chown=node:node --from=backend-builder /app/dist/backend ./dist/backend
|
|
COPY --chown=node:node --from=opkssh-downloader /opkssh /app/opkssh-bundled
|
|
COPY --chown=node:node package.json ./
|
|
# Schema for Postgres and MySQL. Unused by the default SQLite deployment, which
|
|
# builds its tables at startup instead.
|
|
COPY --chown=node:node drizzle ./drizzle
|
|
|
|
VOLUME ["/app/data"]
|
|
|
|
EXPOSE ${PORT} 30001 30002 30003 30004 30005 30006 30007 30008 30009 30010 30011 30012
|
|
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \
|
|
CMD wget -q -O /dev/null http://localhost:30001/health || exit 1
|
|
|
|
COPY docker/entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
CMD ["/entrypoint.sh"]
|