misp-docker
misp-docker copied to clipboard
Update MISP in Docker
Hello, I've built and run MISP (2.4.65) in Docker last week. How can I now update MISP to the newest version?
- find the container ID of your MISP image: sudo docker ps -a
- start a shell session in running container (replace 94f083343111 with your container ID) sudo docker exec -u 0 -it 94f083343111 bash
- go in MISP folder cd /var/www/MISP/
- pull git pull origin 2.4
- update git submodule update --init --force
- exit from container exit
Done!