Skip to content

Commit

Permalink
Update docker file server version and fix os version typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tarun-testsigma committed Jan 7, 2023
1 parent 936ddab commit 35d443a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ public static String getOsVersion() {
osVersion = "8";
} else if (osVersion.startsWith("6.3")) {
osVersion = "8.1";
} else if (osVersion.startsWith("10.0.1")) {
osVersion = "10";
} else if (osVersion.startsWith("10.0.2")){
osVersion = "11";
} else if (osVersion.startsWith("10.0")) {
osVersion = "10";
}
} else if (SystemUtils.IS_OS_MAC_OSX) {
if (osVersion.startsWith("10.16")) {
Expand Down
2 changes: 1 addition & 1 deletion deploy/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
interval: 1s
retries: 120
testsigma_server:
image: testsigmahq/server:v2.5
image: testsigmahq/server:v2.6
container_name: testsigma_server
ports:
- "9090:9090"
Expand Down

0 comments on commit 35d443a

Please sign in to comment.