fix: revert internal port to 3000 (Docker maps 3030:3000 externally)

This commit is contained in:
2026-05-19 16:32:03 +10:00
parent 6c26688244
commit 2ea13fcbaa
+1 -1
View File
@@ -4,7 +4,7 @@ const path = require('path');
require('dotenv').config();
const app = express();
const PORT = process.env.PORT || 3030;
const PORT = process.env.PORT || 3000;
const IMMICH_URL = (process.env.IMMICH_URL || 'http://localhost:2283').replace(/\/+$/, '');
const API_KEY = process.env.IMMICH_API_KEY || '';