From 20cdf9b61d17207db1c98113c37f4474b9b594a7 Mon Sep 17 00:00:00 2001 From: CJ_Clippy Date: Sun, 28 Sep 2025 21:19:08 -0800 Subject: [PATCH] add port spec --- services/our/compose.production.yaml | 5 +++++ services/our/package.json | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/services/our/compose.production.yaml b/services/our/compose.production.yaml index 5445d52..be0a00c 100644 --- a/services/our/compose.production.yaml +++ b/services/our/compose.production.yaml @@ -22,6 +22,11 @@ services: sh -c "npx prisma migrate deploy && npm run start:server" volumes: - /mnt/vfs/futureporn:/mnt/vfs/futureporn + ports: + - target: 3000 # container port + published: 8083 # Swarm ingress port + protocol: tcp + mode: ingress worker: image: gitea.futureporn.net/futureporn/our:latest diff --git a/services/our/package.json b/services/our/package.json index fe7cd2d..3b12523 100644 --- a/services/our/package.json +++ b/services/our/package.json @@ -1,7 +1,7 @@ { "name": "futureporn-our", "private": true, - "version": "2.8.22", + "version": "2.8.23", "type": "module", "scripts": { "dev": "concurrently npm:dev:serve npm:dev:build:server npm:dev:build:client npm:dev:worker npm:dev:compose npm:dev:sftp npm:dev:qbittorrent npm:dev:tailscale", @@ -116,4 +116,4 @@ "prisma": { "seed": "tsx prisma/seed.ts" } -} \ No newline at end of file +}