lonix1

Results 276 comments of lonix1

@Jason-2020 From what I remember the alpine image doesn't come with a webserver, that's why you need to use nginx. If you want phpmyadmin to be completely isolated, then don't...

Agreed! The idea of using docker is to make it automatic and repeatable. But this problem means there is a manual step in every deployment... I'm trying to find a...

I found a workaround - define it in the `config.user.inc.php` file: ````php $i = 1; $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin'; $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark'; $cfg['Servers'][$i]['central_columns'] = 'pma__central_columns'; $cfg['Servers'][$i]['column_info'] = 'pma__column_info'; $cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';...

So what? That one has hardly any info. This one should be preferred as it clearly explains what needs to be done, and links to the appropriate docs.

@llacroix Where would you use the ENV variable - it isn't supported?

@llacroix Thanks, now I understand. It's a nice workaround. We still need native support by the odoo docker image though.

Nice find. For Box: has many dev tools [and SDKs](https://developer.box.com/sdks-and-tools/#official-sdks-clis) but not an official Go SDK; however it does have [a CLI](https://github.com/box/boxcli) which (I assume) could be wrapped in go...

This would be great. But building a dark mode is hard - I've tried - getting the colors just right, readability of fonts, etc. So it's best to do what...

I have lots of logging duplication/overlap between the host (linux + logrotate) and the server app (aspnet + serilog). But this is a long-standing issue, so I assume it's complicated....

That's a pretty clever solution! Sadly in my environment we don't use it. Thanks for the good workaround.