services: vfs: image: node:25-alpine container_name: vfs working_dir: /app command: sh -c "npm install && npm start" environment: HOST: 0.0.0.0 PORT: 24710 ports: - "24710:24710" volumes: - ./Build:/app restart: unless-stopped