Update Dockerfile and add docker-compose for standalone and traefik

This commit is contained in:
2025-04-15 15:56:42 +02:00
parent d6e1162631
commit 3e3b8930b5
5 changed files with 67 additions and 2 deletions

View File

@ -17,7 +17,7 @@ app.use(express.json());
app.use(cookieParser());
app.use(
cors({
origin: process.env.CLIENT_URL || 'http://localhost:3000',
origin: process.env.APP_URL || 'http://localhost:3000',
credentials: true,
})
);