Dockerize client, server, and postgres database for production with container healthchecks

This commit is contained in:
2026-05-28 12:23:50 +02:00
parent 9a2052f623
commit 572d38e490
10 changed files with 176 additions and 11 deletions
+9
View File
@@ -4,6 +4,15 @@ import { VitePWA } from 'vite-plugin-pwa'
// https://vite.dev/config/
export default defineConfig({
server: {
port: 5173,
proxy: {
'/api': {
target: 'http://localhost:5000',
changeOrigin: true
}
}
},
plugins: [
react(),
VitePWA({