generated from kappsegla/maven-java-template
-
Notifications
You must be signed in to change notification settings - Fork 19
Younesbranch #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
gitnes94
wants to merge
27
commits into
ithsjava25:main
Choose a base branch
from
ithsjava25:younesbranch
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Younesbranch #11
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
0e0dc19
add deadline
github-classroom[bot] 18fd14c
-Composer och persistence
gitnes94 1768c46
Merge pull request #1 from ithsjava25/dependency
Samuel-Fjellet 556f0c0
Table genesis
Samuel-Fjellet 8849fbe
Implimentation of connections
Samuel-Fjellet 8f680f6
Name changes
Samuel-Fjellet c08cf1e
Stuff
Samuel-Fjellet 6013ee1
App Try changes
Samuel-Fjellet c49ab49
Relationer
Samuel-Fjellet 4e61a61
Stuff #2
Samuel-Fjellet 0e545fe
Week 1 implimentations
Samuel-Fjellet 59acdec
new entity TimeSlot
gvaguirres 6ca0b95
Merge remote-tracking branch 'origin/table/test' into table/test
gvaguirres 7462839
BookingStatus
gitnes94 7a5da4b
Booking status system
gitnes94 d848b44
Booking status system
gitnes94 9b7d0ea
Menu options
Samuel-Fjellet edd1f76
Menu system in app
Samuel-Fjellet e44fd37
Merge pull request #4 from ithsjava25/Samuel-Branch
Samuel-Fjellet 8b986bb
Merge branch 'table/test2' into younesbranch
gitnes94 88194e2
Booking status system v2
gitnes94 d5fcb10
Meny och service för bokning
gitnes94 988c6e2
Meny och service för bokning
gitnes94 5a39fed
mer funktionalitet, validering felhantering
gitnes94 a8a2cc7
tog bort bordsskapande
gitnes94 3e6d5bb
refaktorisering, tog bort metoders som inte används
gitnes94 f12317c
Code Rabbit Ändringar
Samuel-Fjellet File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,3 @@ | ||
| target/ | ||
| /.idea/ | ||
| .env |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| version: '3.8' | ||
|
|
||
| services: | ||
| mysql: | ||
| image: mysql:9.5.0 | ||
| container_name: restaurant_booking_db | ||
| environment: | ||
| MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD} | ||
| MYSQL_DATABASE: ${MYSQL_DATABASE} | ||
| ports: | ||
| - "3306:3306" | ||
| volumes: | ||
| - mysql_data:/var/lib/mysql | ||
| restart: unless-stopped | ||
|
|
||
| volumes: | ||
| mysql_data: | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
Docker official MySQL image available tags 2024 2025💡 Result:
Recent official Docker Hub mysql tags (examples seen in 2024–2025):
For the full, up-to-date tag list (including older versions and all platform/OS variants) see the official Docker Hub Tags tab for the mysql image. [1]
Sources:
[1] Docker Hub — mysql (Official Image) Tags.
🌐 Web query:
mysql:9.5.0 Docker Hub official image tag exists💡 Result:
Yes — the official mysql image on Docker Hub includes the tag "9.5.0". See the tags list on Docker Hub. [1]
You can pull it with:
docker pull mysql:9.5.0. [1][2]
Sources:
[1] Docker Hub — mysql (official) tags.
[2] docker.io image mirror listing for mysql:9.5.0.
🌐 Web query:
mysql:8.4 LTS Docker Hub official image available💡 Result:
Yes — the official Docker Hub mysql image includes MySQL 8.4 ( LTS ) tags (e.g., 8.4, 8.4.7, lts). Pull with, for example,
docker pull mysql:8.4ordocker pull mysql:lts. [1][2]Sources:
[1] Docker Hub mysql official image (tags list).
[2] MySQL 8.4 release notes (shows 8.4 LTS releases).
mysql:9.5.0is a valid Docker Hub tag; consider hardening the config for better practices.The
mysql:9.5.0tag exists on Docker Hub and will pull successfully. The hardcodedMYSQL_ROOT_PASSWORD: root123and port binding to all interfaces are typical for local development but can be improved:Suggested compose improvements (credentials/port/user)
version: '3.8' services: mysql: image: mysql:9.5.0 container_name: restaurant_booking_db environment: - MYSQL_ROOT_PASSWORD: root123 - MYSQL_DATABASE: restaurant_booking + MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD:-root123} + MYSQL_DATABASE: ${MYSQL_DATABASE:-restaurant_booking} + MYSQL_USER: ${MYSQL_USER:-restaurant_app} + MYSQL_PASSWORD: ${MYSQL_PASSWORD:-restaurant_app_pw} ports: - - "3306:3306" + - "127.0.0.1:3306:3306" volumes: - mysql_data:/var/lib/mysql restart: unless-stoppedThis allows overriding credentials via environment variables and restricts port exposure to localhost, reducing unintended network access.
📝 Committable suggestion
🤖 Prompt for AI Agents