fix: docker compose
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
This commit is contained in:
parent
d5fb93a071
commit
8d4c20008e
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ services:
|
||||||
image: node:24.1.0-alpine3.22
|
image: node:24.1.0-alpine3.22
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
tty: true
|
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
|
working_dir: /app
|
||||||
volumes:
|
volumes:
|
||||||
- ./frontend:/app
|
- ./frontend:/app
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue