xme / misp-docker

Docker container for MISP
96 stars 32 forks source link

Update MISP in Docker #11

Open przemekzn opened 7 years ago

przemekzn commented 7 years ago

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

garanews commented 7 years ago
  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!