Advertisement
Plaidstallion

ipmi-kvm-docker

Dec 2nd, 2020
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. ------------------docker-compose.yml---------------------
  2. version: '3'
  3.  
  4. services:
  5.  
  6. ipmi-kvm-docker:
  7. image: solarkennedy/ipmi-kvm-docker
  8. container_name: ipmi-kvm-docker
  9. restart: "no"
  10. security_opt:
  11. - no-new-privileges:true
  12. ports:
  13. - 1337:8080
  14. volumes:
  15. - ./ipmi-kvm-docker:/root/.java/deployment/security
  16. --------------------------
  17.  
  18. Inside of folder `security` (./ipmi-kvm-docker) I have a file named exception.sites that has the ip's of my IPMI interfaces, one per line like so, in my case.:
  19.  
  20. http://192.168.1.2
  21. http://192.168.1.3
  22.  
  23. -------------------------
  24.  
  25. Inside the container you will need to click lots of boxes accepting the security risks etc and the container should put a few more files in the mapped folder you defined:
  26.  
  27. baseline.versions
  28. blacklict.dynamic
  29. blacklisted.certs
  30. securitypack.jar
  31. update.securitypack.timestamp
  32.  
  33. Personally, I haven't had to touch these files. I just leave them the way they are.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement