1 2 3 4 5 6 7 8 9 10 11 12 13
version: '3' services: web: build: context: . dockerfile: Dockerfile volumes: - .:/app - /app/node_modules ports: - "3000:3000" environment: - NODE_ENV=production