Skip to content

Commit 2ced82e

Browse files
committed
chore: increase version
1 parent f9c6919 commit 2ced82e

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ docker-compose -p common-api-development -f docker-compose.dev.yml up -d
125125
Building image for production
126126
```bash
127127
cd docker
128-
DOCKER_BUILDKIT=1 docker build -f Dockerfile.prod -t common-api:4.1.1 ../
128+
DOCKER_BUILDKIT=1 docker build -f Dockerfile.prod -t common-api:4.1.2 ../
129129
```
130130

131131
docker compose for production
@@ -163,7 +163,7 @@ docker-compose -p common-api -f docker-compose.prod.yml up -d
163163
> ```shell
164164
> # to change the value of some environment variable at runtime
165165
> # on execution, just pass it as a parameter. (like --SERVER_PORT=80).
166-
> $ java -jar api-4.1.1.RELEASE.jar --SERVER_PORT=80
166+
> $ java -jar api-4.1.2.RELEASE.jar --SERVER_PORT=80
167167
> ```
168168
169169

docker/docker-compose.prod.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717
- ./.volumes/database:/var/lib/postgresql/data
1818

1919
api:
20-
image: common-api:4.1.1
20+
image: common-api:4.1.2
2121
restart: unless-stopped
2222
container_name: common-api
2323
links:
@@ -30,4 +30,5 @@ services:
3030
DB_PASSWORD: ${DB_PASSWORD}
3131
TOKEN_SECRET: ${TOKEN_SECRET}
3232
DB_SHOW_SQL: "false"
33-
PRIVATE_SWAGGER: "true"
33+
SWAGGER_USERNAME: "example"
34+
SWAGGER_PASSWORD: "example"

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</parent>
1010
<groupId>com.github.throyer.common.spring-boot</groupId>
1111
<artifactId>api</artifactId>
12-
<version>4.1.1</version>
12+
<version>4.1.2</version>
1313
<name>CRUD API</name>
1414

1515
<description>Exemplo de api simples com Spring Boot</description>

0 commit comments

Comments
 (0)