From b7f4f7b2c8cd44a1b30186ff312c29ccc99b36bf Mon Sep 17 00:00:00 2001 From: CJ_Clippy Date: Tue, 30 Sep 2025 21:09:38 -0800 Subject: [PATCH] add pgadmin --- services/our/compose.production.yaml | 10 +++++++++- services/our/package.json | 4 ++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/services/our/compose.production.yaml b/services/our/compose.production.yaml index 169fa98..3aa23b7 100644 --- a/services/our/compose.production.yaml +++ b/services/our/compose.production.yaml @@ -41,11 +41,19 @@ services: qbittorrent: image: gitea.futureporn.net/futureporn/qbittorrent-nox:latest - container_name: qbittorrent env_file: ./.env init: false volumes: - /mnt/vfs/futureporn:/mnt/vfs/futureporn + pgadmin: + image: dpage/pgadmin4:latest + env_file: ./.env + ports: + - target: 5050 + published: 5050 + protocol: tcp + mode: ingress + volumes: pgdata: diff --git a/services/our/package.json b/services/our/package.json index bc65c2c..4ab334d 100644 --- a/services/our/package.json +++ b/services/our/package.json @@ -1,7 +1,7 @@ { "name": "futureporn-our", "private": true, - "version": "2.8.26", + "version": "2.8.27", "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 +}