Renan Taranto
Renan Taranto
Hi @maxpou. Yeah its for production. Thank you.
The Api Platform (https://github.com/api-platform/api-platform) has a great docker setup with nginx and php fpm that can be used as reference. I wish I could help more but I'm still learning...
Hi @Miggianox94 , take a look at https://github.com/renan-taranto/symfony-dddocker. It may help you somehow.
@Khaldoun488 I ended up not using this project boilerplate. Besides the resources I've already mentioned, this may help also: https://symfony.com/doc/current/setup/web_server_configuration.html#nginx
I'm having the same issue @warmwhisky. Did you figure it out how to solve it?
I solved it by using an `afterShow` function like this: ```js afterShow: function() { setTimeout(() => { $(".collectTime .clockpicker").addClass('picker--opened') $(".collectTime .clockpicker").show(); }, 50); } ``` It's an ugly workaround but...