Skip to content
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

Main #3

Closed
wants to merge 11 commits into from
Closed
6 changes: 4 additions & 2 deletions .github/workflows/Main-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@ jobs:
- name: Build and run docker-image with the Dockerfile
run: |
docker build --tag registeration-process:v2.0 .

- name: Build and run docker-compose
run: |
docker-compose build
docker-compose up -d

docker-compose down

1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ services:


# Note:- Volumes Comment to pull image with shared mounted folder without any problem related with fixed local folder path

2 changes: 1 addition & 1 deletion src/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public static void main(String[] args) throws IOException {
System.out.println("System closed Successfully.");
break;
} else {
System.out.println("This number not valid .. Enter correct number!");
System.out.println("This number not valid ... Enter correct number!");
}
}
List<String> list = new CSVFileHelper().readLinesFromCSVFile(filePathStr);
Expand Down