Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,13 @@ services:
start_period: 30s

mainapp:
image: ${DUSER}/${IMAGE}
container_name: Bankapp
image: devopscrusher/bankapp:latest
environment:
- SPRING_DATASOURCE_USERNAME=root
- SPRING_DATASOURCE_URL=jdbc:mysql://mysql:3306/BankDB?useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=UTC
- SPRING_DATASOURCE_PASSWORD=Test@123
ports:
- "8080:8080"
- "8081:8080"
depends_on:
mysql:
condition: service_healthy
Expand All @@ -43,4 +42,4 @@ networks:
bankapp:

volumes:
bankapp-volume:
bankapp-volume:
2 changes: 1 addition & 1 deletion src/main/resources/templates/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-custom">
<a class="navbar-brand" href="#">Goldencat Bank</a>
<a class="navbar-brand" href="#">PNT Bank</a>
<div class="ml-auto social-icons">
<a href="https://www.youtube.com/@codewithgoldencat" target="_blank" title="YouTube">
<i class="fab fa-youtube"></i>
Expand Down