File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export function showWelcomeMessage(context: vscode.ExtensionContext) {
28
28
showMessageAndButtons ( `
29
29
DevDb updated to ${ currentVersion } .
30
30
✨ You can now support DevDb develpment
31
- ✨ Added support for custom workspace base bath
31
+ ✨ Allow multiple connections of same type in .devdbrc
32
32
✨ (see details in the repo's README)
33
33
` , context ) ;
34
34
}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ if [ "$(docker ps -a --filter 'name=^/mssql-devdb-triage$' --format '{{.Names}}'
9
9
docker start mssql-devdb-triage
10
10
else
11
11
echo " Container does not exist. Creating a new mssql-devdb-triage container..."
12
- docker run --name mssql-devdb-triage -e ' ACCEPT_EULA=Y' -e ' SA_PASSWORD=MyS3cretPassw0rd' -p 1433 :1433 -d mcr.microsoft.com/mssql/server:2019-latest
12
+ docker run --name mssql-devdb-triage -e ' ACCEPT_EULA=Y' -e ' SA_PASSWORD=MyS3cretPassw0rd' -p 1111 :1433 -d mcr.microsoft.com/mssql/server:2019-latest
13
13
fi
14
14
15
15
# Install the SQL tools if not present
@@ -92,7 +92,7 @@ echo "Example connection details:"
92
92
cat << EXAMPLE_CONNECTION
93
93
{
94
94
"host" : "localhost",
95
- "port" : 1433 ,
95
+ "port" : 1111 ,
96
96
"username" : "SA",
97
97
"password" : "MyS3cretPassw0rd",
98
98
"database" : "sample_db"
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ if [ "$(docker ps -a --filter 'name=^/postgres-devdb-triage$' --format '{{.Names
9
9
docker start postgres-devdb-triage
10
10
else
11
11
echo " Container does not exist. Creating a new postgres-devdb-triage container..."
12
- docker run --name postgres-devdb-triage -e POSTGRES_PASSWORD=mysecretpassword -p 5432 :5432 -d postgres
12
+ docker run --name postgres-devdb-triage -e POSTGRES_PASSWORD=mysecretpassword -p 3333 :5432 -d postgres
13
13
fi
14
14
15
15
# Wait for the database to start
@@ -51,7 +51,7 @@ echo "Example connection details:"
51
51
cat << EXAMPLE_CONNECTION
52
52
{
53
53
"host" : "localhost",
54
- "port" : 5432 ,
54
+ "port" : 3333 ,
55
55
"username" : "postgres",
56
56
"password" : "mysecretpassword",
57
57
"database" : "sample_db"
You can’t perform that action at this time.
0 commit comments