Guest User

Untitled

a guest
Nov 29th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. version: '2'
  2. services:
  3. jenkins:
  4. image: 'bitnami/jenkins:latest'
  5. labels:
  6. kompose.service.type: nodeport
  7. ports:
  8. - '8080'
  9. - '8443'
  10. - '50000'
  11. volumes:
  12. - './jenkins_data:/bitnami/jenkins'
  13. environment:
  14. - VIRTUAL_HOST=<yourdomain>
  15. - LETSENCRYPT_HOST=<yourdomain>
  16. - VIRTUAL_PORT=8080
  17. - JENKINS_USERNAME=<your username>
  18. - JENKINS_PASSWORD='<your strong password>'
  19. networks:
  20. - webproxy
  21. networks:
  22. webproxy:
  23. external: true
Add Comment
Please, Sign In to add comment