Vytenis
Vytenis
Yes please fiix this.
You can run this on Windows to ``` docker run -d --name docker-hostmanager --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v C:/Windows/System32/drivers/etc/hosts:/hosts iamluc/docker-hostmanager ``` Or mount the volume to your hosts location. But you...
:snowboarder: Probably posible solution ``` docker run -d --name docker-hostmanager --restart=always -v "C:\Windows\System32\drivers\etc\hosts:/etc/hosts" iamluc/docker-hostmanager ``` But still there is no permissions to access hosts file ``` docker: Error response from...
You should update the readme
:ab: More tests needed.
@bernhardberger can't remember :)
This bug forces my all application to change the locale. You probably did something wrong with fallback language.
Befor application is running I'm setting the moment.locale(lt); and then your plugin is reseting this to EN locale. Thats wrong :)
This is HMVC not MVC :)
I tested and its worked for me. ``` php // modules/language_module/models/language_model.php class Language_model extends MY_Model { protected $_table = 'language'; protected $primary_key = 'language_id'; public $belongs_to = array( 'user' =>...