fix: docker compose

Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
This commit is contained in:
Ameya Shenoy 2025-09-15 18:26:17 +05:30
parent d5fb93a071
commit 8d4c20008e
Signed by: codingcoffee
GPG key ID: 99B82CC0FD1A0DC0

View file

@ -4,7 +4,7 @@ services:
image: node:24.1.0-alpine3.22
restart: unless-stopped
tty: true
command: "sh -c '[ ! -d node_modules ] || npm install && npm run dev'"
command: "sh -c '[ -d node_modules ] || npm install && npm run dev'"
working_dir: /app
volumes:
- ./frontend:/app