https://github.com/learningbyexample/gradledockerci
https://github.com/learningbyexample/gradledockerci
docker docker-container gradle
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/learningbyexample/gradledockerci
- Owner: LearningByExample
- License: mit
- Created: 2017-06-01T18:09:52.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-04T14:47:07.000Z (almost 9 years ago)
- Last Synced: 2025-03-15T10:30:30.370Z (about 1 year ago)
- Topics: docker, docker-container, gradle
- Language: Java
- Size: 55.7 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
Awesome Lists containing this project
README
## Gradle Docker CI Example
The idea of this project is to have boilerplate template of a gradle project that can be
executed and test in a docker container.
The idea behind this is to allow to test and run an application in a controlled environment.
To run the application in the docker container just run:
```shell
~ $ gradlew dockerRun
```
To run the tests just run:
```shell
~ $ gradlew dockerTest
```
If you like to customize the docker image just edit docker/DOCKERFILE
This boilerplate could be used not only for any kind of application, jut modify the gradle
build to copy and run what ever you need in the container