one/docker-compose.yml
Ameya Shenoy 70be88573a feat: init nextjs
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2025-06-01 00:00:09 +05:30

14 lines
298 B
YAML

services:
frontend:
image: node:24.1.0-alpine3.22
# command: "sh -c '[ ! -d node_modules ] || npm install && npx run dev'"
command: sleep inf
working_dir: /app
volumes:
- ./frontend:/app
ports:
- "3000:3000"
environment:
NEXT_TELEMETRY_DISABLED: 1