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
- Host: GitHub
- URL: https://github.com/charlires/golang-docker-jenkins
- Owner: charlires
- License: apache-2.0
- Created: 2017-11-13T03:02:29.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-21T15:01:23.000Z (over 7 years ago)
- Last Synced: 2025-03-24T18:49:38.984Z (7 months ago)
- Topics: docker, dockerfiles, golang, jenkins-ci, jenkins-pipeline, jenkinsfile
- Language: Go
- Homepage:
- Size: 13.7 KB
- Stars: 21
- Watchers: 3
- Forks: 21
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 jenkinsIts 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