Jason Kendall

Results 154 comments of Jason Kendall

`/var/www/MISP/app/files` is recommended to be a volume mount, and is not updated on updating the image. However, it does get updated nightly: https://github.com/coolacid/docker-misp/blob/master/server/files/entrypoint_cron.sh#L10 Can you check to see if that...

Ok, writing this down so I don't miss anything: Was on 2.4.124, git head of warninglists was `10bcc14` which matched what UI says: `10bcc1496dce382665b04f760b7b0ce99b8ae3e7` Did a pull to 2.4.125, and...

Ok, so, for some reason it's updating a different internal directory, not the one being exposed. My thought is to use rsync to ensure /var/www/MISP/app/files.dist/* updates /var/www/MISP/app/files - which should...

Evaluating: `rsync -azh /var/www/MISP/app/files.dist/* /var/www/MISP/app/files` But seems to still have some issues that I'm looking into.

My current problem with this rsync command is, it doesn't delete files that should no longer be there, however adding `--delete` flag would remove all the special files. $DayJob stuff...

Bind mounts are used so that the directory is available for backups, or putting on NFS shares for HA capabilities.

Closed by 3773870ae36d0cc3e2825795a6383443394d2115

Not something that had crossed my mind. Sorry. The rsync delete is there to ensure files that might be deleted upstream is also deleted here. Since you're adding an unexpected...

Please do let me know how that works. I'm not sure if that's going to be a work around, or the recommended solution. Of course, using the custom_entrypoint.sh file also...

Herm. Yes. Ok, let me think some more.