-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#3 pulling images from ghcr, test scripts, compose adjustments
- Loading branch information
Showing
11 changed files
with
121 additions
and
303 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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,19 @@ | ||
|
||
# simple test script | ||
|
||
print('Simple Test of MariaDB Connectivity') | ||
|
||
con <- try(DBI::dbConnect( | ||
RMariaDB::MariaDB(), | ||
host = "maria", | ||
username = "compose", | ||
password = "YourStrong!Passw0rd", | ||
dbname = "test"), silent = T) | ||
|
||
if(class(con) == "try-error"){ | ||
print('Incorrect Setup.') | ||
}else{ | ||
print(con) | ||
print('Connection Correctly Configured.') | ||
} | ||
|
This file contains 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,22 @@ | ||
|
||
# simple test script | ||
|
||
print('Simple Test of MSSQL Connectivity') | ||
|
||
con <- try(DBI::dbConnect( | ||
odbc::odbc(), | ||
driver = 'ODBC Driver 18 for SQL Server', | ||
server = 'mssql', | ||
database = 'test', | ||
uid = 'SA', | ||
pwd = 'YourStrong!Passw0rd', | ||
port = 1433, | ||
TrustServerCertificate = 'yes'), silent = T) | ||
|
||
if(class(con) == "try-error"){ | ||
print('Incorrect Setup.') | ||
}else{ | ||
print(con) | ||
print('Connection Correctly Configured.') | ||
} | ||
|
This file contains 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,19 @@ | ||
|
||
# simple test script | ||
|
||
print('Simple Test of MySQL Connectivity') | ||
|
||
con <- try(DBI::dbConnect( | ||
RMariaDB::MariaDB(), | ||
host = "mysql", | ||
username = "compose", | ||
password = "YourStrong!Passw0rd", | ||
dbname = "test"), silent = T) | ||
|
||
if(class(con) == "try-error"){ | ||
print('Incorrect Setup.') | ||
}else{ | ||
print(con) | ||
print('Connection Correctly Configured.') | ||
} | ||
|
This file contains 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 @@ | ||
|
||
# simple test script | ||
|
||
print('Simple Test of Oracle Connectivity') | ||
|
||
con <- try(DBI::dbConnect(odbc::odbc(), | ||
UID='compose', | ||
PWD='password1', | ||
Driver = 'OracleODBC-19c'), silent = T) | ||
|
||
if(class(con) == "try-error"){ | ||
print('Incorrect Setup.') | ||
}else{ | ||
print(con) | ||
print('Connection Correctly Configured.') | ||
} | ||
|
This file contains 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,18 @@ | ||
|
||
# simple test script | ||
|
||
print('Simple Test of Postgres Connectivity') | ||
|
||
con <- try(DBI::dbConnect( | ||
RPostgres::Postgres(), | ||
host = 'postgres', | ||
user = 'compose', | ||
password = 'YourStrong!Passw0rd'), silent = T) | ||
|
||
if(class(con) == "try-error"){ | ||
print('Incorrect Setup.') | ||
}else{ | ||
print(con) | ||
print('Connection Correctly Configured.') | ||
} | ||
|
Oops, something went wrong.