From 2eb133ee39e031b8a5323401da01a40456998b48 Mon Sep 17 00:00:00 2001 From: Oleksandr Shuryha Date: Thu, 26 Mar 2026 12:22:15 +0100 Subject: [PATCH] fix compose --- docker-compose.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 849a5f0..9eb7c36 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,6 @@ services: backend: - image: node:20-alpine + image: node:22-alpine working_dir: /app command: sh -c "npm ci && npm run dev:backend" ports: @@ -10,7 +10,7 @@ services: - backend_node_modules:/app/node_modules frontend: - image: node:20-alpine + image: node:22-alpine working_dir: /app command: sh -c "npm ci && npm run dev:frontend -- --host 0.0.0.0 --port 5173" ports: @@ -26,3 +26,4 @@ services: volumes: backend_node_modules: frontend_node_modules: +