Align all internal, exposed, and mapped ports to 8090 universally per user request.

This commit is contained in:
Kroonk
2026-04-12 16:47:54 +02:00
parent 7509253ee7
commit 15e74f42c2
3 changed files with 3 additions and 3 deletions

View File

@@ -33,6 +33,6 @@ RUN chmod +x /entrypoint.sh
# Verzeichnisse anlegen
RUN mkdir -p /app/public/images/fulls /app/public/images/thumbs /app/data
EXPOSE 80
EXPOSE 8090
ENTRYPOINT ["/entrypoint.sh"]

View File

@@ -177,7 +177,7 @@ app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, '../public/index.html'));
});
const PORT = 80;
const PORT = 8090;
app.listen(PORT, () => {
console.log(`Backend server listening on port ${PORT}`);
});

View File

@@ -3,7 +3,7 @@ services:
image: ghcr.io/kroonk/photography:latest
container_name: photography-website
ports:
- "8090:80"
- "8090:8090"
volumes:
# Nextcloud-Ordner mit Originalbildern (read-only)
- /volume1/nextcloud/data/Tom/files/Websitebilder:/app/public/images/fulls:ro