Mathieu Rochette

Results 120 comments of Mathieu Rochette

of course there is a few use cases where tags could be useful, there are also some really easy workaround, eg: ``` FROM clue/adminer RUN wget https://www.adminer.org/static/download/4.2.4/adminer-4.2.4.php -O /var/www/index.php ```...

@mikehaertl I do think tags are a plus. (and manage them on my images, eg: https://hub.docker.com/r/texthtml/phpcs/tags/) . just saying that IMHO, adminer can live without tags

There is now an official image based on alpine (eg php:7.0-fpm-alpine), so it could solve #16 at the same time

@clue do you think you can merge this? it also fix [an issue with SNI](https://github.com/jkbrzt/httpie#sni-server-name-indication) because it has a more recent python version (> 2.7.9)

updated PR to simplify it a bit (size did not change significantly, clue/httpie: 207.6MB, with PR: 52.74 MB) /ping @clue

what do you mean by that ?

Couldn't it work with just : ``` /mycircle [ /x 75 /y 50 /radius 5 /colour "purple" ] object. def. ``` `object` could take a function and treat the output...

yep, an alternative may be to something like that: - `/x /get mycircle.` (-> value) - `/keys mycircle.` (-> list) - `2 /get mylist.` (-> value) - `/length mylist.` (->...

We can imagine something like this to create a copy with one value changed: ``` /x 70 /with mycircle. ``` we don't have to repeat all existing value for that...

well, it can be ambiguous here : `/x /x mycircle.` should that means : - set the value of `/x` in `mycircle` to `/x` and return the new record -...