Tuomas Ukkola

Results 7 comments of Tuomas Ukkola

Yup. ``` docker -v Docker version 17.09.0-ce, build afdb6d4 ``` ``` docker-compose -v docker-compose version 1.16.1, build 6d1ac219 ```

Hi. Running `NODE_PORT=1 docker-compose build` gives me `'NODE_PORT' is not recognized as an internal or external command, operable program or batch file.` error. So I tried replacing `${NODE_PORT}` with `1`...

So I did that but got this error this time around: ``` Building web Step 1/12 : FROM node:8.2.1 ---> b17af62b0dea Step 2/12 : RUN mkdir -p /usr/app ---> Using...

So I did `mkdir bin\src\data` and then `docker-compose build` and it ran successfully. ``` Building web Step 1/12 : FROM node:8.2.1 ---> b17af62b0dea Step 2/12 : RUN mkdir -p /usr/app...

Instead of passing `props.input.value` to the input component let the Input component handle it's own value. This is what I had before ```javascript const FormInput = ({ input: {onChange, ...restInput},...

Yeah, you're right. I've updated the PR. Would eb8944c work?

I don't think `getUserPlaylists` handles pagination, so it will always load maximum of 50 entries as per Spotify web API documentation. Therefore I think it is simpler to let Spotify...