misp-docker icon indicating copy to clipboard operation
misp-docker copied to clipboard

Update MISP in Docker

Open przemekzn opened this issue 9 years ago • 1 comments

Hello, I've built and run MISP (2.4.65) in Docker last week. How can I now update MISP to the newest version?

przemekzn avatar Feb 20 '17 09:02 przemekzn

  1. find the container ID of your MISP image: sudo docker ps -a
  2. start a shell session in running container (replace 94f083343111 with your container ID) sudo docker exec -u 0 -it 94f083343111 bash
  3. go in MISP folder cd /var/www/MISP/
  4. pull git pull origin 2.4
  5. update git submodule update --init --force
  6. exit from container exit

Done!

garanews avatar Jun 23 '17 10:06 garanews