services: qr-code-api: build: context: . dockerfile: Dockerfile container_name: qr_code_api_local restart: unless-stopped environment: - NODE_ENV=development - PORT=3000 ports: - "3000:3000" command: npm run dev volumes: - ./:/app - /app/node_modules networks: - qr-local networks: qr-local: driver: bridge