services: web: build: context: .. dockerfile: docker/Dockerfile target: development ports: - "3000:3000" volumes: - ..:/app - /app/node_modules - /app/.next environment: - NODE_ENV=development - NEXT_TELEMETRY_DISABLED=1 restart: unless-stopped # Production build (optional) # web-prod: # build: # context: .. # dockerfile: docker/Dockerfile # target: production # ports: # - "3000:3000" # environment: # - NODE_ENV=production # restart: unless-stopped