Skip to content

Commit 06d336a

Browse files
Added Readme information and Dockerfile (#19)
- Added information on Readme - Added Dockerfile
1 parent 4b99bb3 commit 06d336a

File tree

281 files changed

+2080
-954
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

281 files changed

+2080
-954
lines changed
Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
name: Create Release
2-
32
on:
43
push:
5-
# Sequence of patterns matched against refs/tags
64
tags:
7-
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
8-
5+
- 'v*'
96
jobs:
107
build:
118
name: Create Release
129
runs-on: ubuntu-latest
1310
steps:
14-
- name: Checkout code
11+
- name: Checkout branch Master
1512
uses: actions/checkout@master
1613
- name: Create Release
1714
id: create_release
@@ -23,7 +20,6 @@ jobs:
2320
release_name: Release ${{ github.ref }}
2421
body: |
2522
Changes in this Release
26-
- First Change
27-
- Second Change
23+
- ${{ github.event.head_commit.message }}
2824
draft: false
2925
prerelease: false

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
name: Generate Docker Image and Publish
2-
1+
name: Publish Docker Image on Docker Hub
32
on:
43
push:
54
tags: [ 'v*.*.*' ]
6-
75
jobs:
86
docker:
97
runs-on: ubuntu-latest

README.md

Lines changed: 83 additions & 1 deletion

data/jacoco-coverage.png

106 KB

data/openapi-endpoints.png

88.7 KB

docker-compose.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
services:
2+
reactive-api:
3+
image: "laurocorreia/reactive-api:latest"
4+
container_name: "reactive-api"
5+
networks:
6+
- compose-brigde
7+
ports:
8+
- 8080:8080
9+
networks:
10+
compose-bridge:
11+
driver: brigde
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)