one/docker-compose.yml
Ameya Shenoy bbc40ec297 chore: build
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2025-06-07 20:59:18 +05:30

15 lines
315 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