An open API service indexing awesome lists of open source software.

https://github.com/charlires/golang-docker-jenkins

Sample Go app project using Docker and Jenkins best practices
https://github.com/charlires/golang-docker-jenkins

docker dockerfiles golang jenkins-ci jenkins-pipeline jenkinsfile

Last synced: 6 months ago
JSON representation

Sample Go app project using Docker and Jenkins best practices

Awesome Lists containing this project

README

          

# Sample Golang app for CI
This sample app is made to help other developers start working with docker and jenkins

Its a work in progress so any comment and suggestion is well received

## Build base image
```
make build-base
```

## Build test image
```
make build-test
```

## Run tests (make build-test first)
```
make test-units
```

## Run project
``` bash
make run
```
default port is 8080
you can change the port using `PORT` argument
> make run PORT=8081