Skip to content

Commit

Permalink
Release tag: 'v3.14.0'.
Browse files Browse the repository at this point in the history
  • Loading branch information
dleclercpro committed Jun 18, 2024
1 parent 4541e97 commit cf2d065
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Apps/Client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Apps/Client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quiz--client",
"version": "latest",
"version": "3.14.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.3",
Expand Down
4 changes: 2 additions & 2 deletions Apps/Server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Apps/Server/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "quiz--server",
"label": "Server",
"version": "latest",
"version": "3.14.0",
"author": "David Leclerc",
"main": "./src/index.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion Scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dir="$(cd "$(dirname "$0")" && pwd)"
# Define image details
user="dleclercpro"
app="quiz"
release="latest"
release="3.14.0"

# Build multi-platform Docker image and push it to Dockerhub
docker buildx build --platform linux/amd64,linux/arm64 -t $user/$app:$release -f ./Dockerfile . --push
2 changes: 1 addition & 1 deletion Scripts/run.local.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Define constant image details
user="dleclercpro"
app="quiz"
release="latest"
release="3.14.0"
composefile="docker-compose.local.yml"

# Get and move to the directory containing the script
Expand Down
2 changes: 1 addition & 1 deletion Scripts/run.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Define constant image details
user="dleclercpro"
app="quiz"
release="latest"
release="3.14.0"
composefile="docker-compose.yml"

# Get and move to the directory containing the script
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3.8'

services:
quiz-app:
image: dleclercpro/quiz:latest
image: dleclercpro/quiz:3.14.0
container_name: quiz-app
ports:
- 80:8000
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3.8'

services:
quiz-app:
image: dleclercpro/quiz:latest
image: dleclercpro/quiz:3.14.0
container_name: quiz-app
networks:
- custom
Expand Down

0 comments on commit cf2d065

Please sign in to comment.