Yaxian

Results 8 comments of Yaxian

@michalgarcarz Did it fix now? There are some different between running command with flag `--vm-driver none` and `--vm-driver=hyperkit`. Did you try with `--vm-driver=hyperkit `?

@michalgarcarz Sorry, I did not try minikube on Ubutun. I run k8s by` kubeadm` in production on Ubuntu 16.04 server. Would you try `kubeadm`, `kubectrl`, and `helm` if possible? Try...

Hi, Could you shoe me which `typescript` and `vue` version do you use, or provide a demo link? Thanks.

sorry, I have no idea On Mon, Oct 8, 2018 at 6:23 PM shashi wrote: > @Yaxian Yaxian @venkyyPoojari > any solution do you have as of now ? >...

```javascript import {GridFSBucket, MongoClient, ObjectId} from 'mongodb'; import { Readable } from 'stream'; let connection = MongoClient.connect(url, { useNewUrlParser: true, useUnifiedTopology: true } ); let db = connection.db(dbName); let gridfsBucket...

try this way in your `Dockerfile`: ``` RUN mkdir .yarncache RUN yarn install --cache-folder ./.yarncache RUN rm -rf .yarncache ``` or in your workspace: ``` mkdir .yarncache yarn install --cache-folder...