Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(vagrant, ci): forward more ports used in docker katas, ci go builder #4

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

xhalo32
Copy link

@xhalo32 xhalo32 commented Sep 5, 2023

Note: 8000 is required here https://github.com/eficode-academy/docker-katas/blob/master/labs/05-executing.md

The go builder works with the following Jenkinsfile:

pipeline {
  agent {
    label 'build'
  }
  environment {
    GO111MODULE = 'on'
  }
  stages {
    stage('Build') {
      parallel {
        stage('Frontend') {
          steps {
            sh """
                cd frontend
                go build
                """
          }
        }
        stage('Backend') {
          steps {
            sh """
                cd backend
                go build
                """
          }
        }
      }
    }
  }
}

@xhalo32 xhalo32 changed the title fix(vagrant): forward more ports used in docker katas fix(vagrant, ci): forward more ports used in docker katas, ci go builder Sep 6, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant