fix compose

This commit is contained in:
2026-03-26 12:22:15 +01:00
parent 799b012ceb
commit 2eb133ee39

View File

@@ -1,6 +1,6 @@
services: services:
backend: backend:
image: node:20-alpine image: node:22-alpine
working_dir: /app working_dir: /app
command: sh -c "npm ci && npm run dev:backend" command: sh -c "npm ci && npm run dev:backend"
ports: ports:
@@ -10,7 +10,7 @@ services:
- backend_node_modules:/app/node_modules - backend_node_modules:/app/node_modules
frontend: frontend:
image: node:20-alpine image: node:22-alpine
working_dir: /app working_dir: /app
command: sh -c "npm ci && npm run dev:frontend -- --host 0.0.0.0 --port 5173" command: sh -c "npm ci && npm run dev:frontend -- --host 0.0.0.0 --port 5173"
ports: ports:
@@ -26,3 +26,4 @@ services:
volumes: volumes:
backend_node_modules: backend_node_modules:
frontend_node_modules: frontend_node_modules: