Skip to content

Commit ece7c29

Browse files
author
ABDERRAOUF MAKHLOUF
committed
chore() use-lombok-library
1 parent 4647552 commit ece7c29

File tree

94 files changed

+1626
-2588
lines changed

Some content is hidden

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

94 files changed

+1626
-2588
lines changed

.github/workflows/greetings.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: Greetings
22

3-
on: [pull_request, issues]
3+
on: [ pull_request, issues ]
44

55
jobs:
66
greeting:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/first-interaction@v1
10-
with:
11-
repo-token: ${{ secrets.GITHUB_TOKEN }}
12-
issue-message: 'Welcome to Spring-Boot-Blog-REST-API community! Thanks so much for creating your first issue :)'
13-
pr-message: 'Thanks so much for creating your first PR, the Spring-Boot-Blog-REST-API community thanks you :)'
9+
- uses: actions/first-interaction@v1
10+
with:
11+
repo-token: ${{ secrets.GITHUB_TOKEN }}
12+
issue-message: 'Welcome to Spring-Boot-Blog-REST-API community! Thanks so much for creating your first issue :)'
13+
pr-message: 'Thanks so much for creating your first PR, the Spring-Boot-Blog-REST-API community thanks you :)'

docker-compose.yml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
version: '3'
22
services:
3-
mysql:
4-
image: mysql
5-
restart: always
6-
environment:
7-
MYSQL_DATABASE: 'blogapi'
8-
MYSQL_USER: 'root'
9-
MYSQL_PASSWORD: 'root'
10-
MYSQL_ROOT_PASSWORD: 'root'
11-
ports:
12-
- '3306'
13-
networks:
14-
- production-network
15-
application:
16-
build:
17-
dockerfile: ./Dockerfile
18-
context: .
19-
image: michel-eckhardt/spring-boot-blog
20-
container_name: spring-boot-blog
21-
ports:
22-
- "8080:8080"
23-
networks:
24-
- production-network
25-
depends_on:
26-
- "mysql"
27-
networks:
28-
production-network:
29-
driver: bridge
3+
mysql:
4+
image: mysql
5+
restart: always
6+
environment:
7+
MYSQL_DATABASE: 'blogapi'
8+
MYSQL_USER: 'root'
9+
MYSQL_PASSWORD: 'root'
10+
MYSQL_ROOT_PASSWORD: 'root'
11+
ports:
12+
- '3306'
13+
networks:
14+
- production-network
15+
application:
16+
build:
17+
dockerfile: ./Dockerfile
18+
context: .
19+
image: michel-eckhardt/spring-boot-blog
20+
container_name: spring-boot-blog
21+
ports:
22+
- "8080:8080"
23+
networks:
24+
- production-network
25+
depends_on:
26+
- "mysql"
27+
networks:
28+
production-network:
29+
driver: bridge

0 commit comments

Comments
 (0)