one/docker-compose.yml
Ameya Shenoy 8d4c20008e
fix: docker compose
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2025-09-15 18:26:17 +05:30

15 lines
313 B
YAML

services:
frontend:
image: node:24.1.0-alpine3.22
restart: unless-stopped
tty: true
command: "sh -c '[ -d node_modules ] || npm install && npm run dev'"
working_dir: /app
volumes:
- ./frontend:/app
ports:
- "3000:3000"
environment:
NEXT_TELEMETRY_DISABLED: 1