ju5t

Results 42 comments of ju5t

@bilfeldt I'm currently working on an application where I could use a component like this. Instead of spending a lot of time building this myself, would you be open for...

The package `pip` doesn't exist either. And it's likely there will be other problems. Unfortunately my time is very limited so I can't address this myself, but it would be...

@thermiteplasma the thing with publishing the views is that you're not getting any updates either. Might not necessarily be a problem though, just putting it out there :)

Most of the permissions can be solved by specifying `USER www-data` within the `Dockerfile`. This means we need a (sudo) solution for Apache. Apache binds on port 80.

Fair point. It's only used when setting the database credentials here. https://github.com/sensson/docker-magento2/blob/master/entrypoint.sh#L41 We could probably replace this with something like: ```bash if [ -f "${MYSQL_PASSWORD}"]; then _MYSQL_PASSWORD=$(

In your example you said that you used the following code: ```php $password = $is_dev ? $_ENV['MYSQL_PASSWORD'] : trim(file_get_contents($_ENV['MYSQL_PASSWORD'])), ``` which is why I made the `entrypoint.sh` example to check...

It doesn't install the source for you. Did you run `composer install` in the source directory?

Sorry, apparently we have never tested the switch to PHP 7.2 properly. I have fixed the base image. Something happened between 2.2.7 and 2.2.10 though. The automated installation and/or upgrade...

I had the same issue with Carbon. Didn't notice it before we use the macro a lot in blade views. Just wanted to say @canvural comment fixed it for me...

@Matth10 @mikebronner what did you guys end up with?