one/docker-compose.yml

16 lines
315 B
YAML
Raw Normal View History

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