Answers for "katacoda jenkins ci/cd"

0

katacoda jenkins ci/cd

version: "3.8"

services:

  jenkins:
    image: jenkins/jenkins:2.255
    ports:
    - "8080:8080"
    - "50000:50000"
    volumes:
    - ./jenkins:/var/jenkins_home
    restart: unless-stopped

  mails:
    image: mailhog/mailhog
    restart: unless-stopped
    ports:
    - "8025:8025"
    - "1025:1025"
Posted by: Guest on April-06-2021

Browse Popular Code Answers by Language