Skip to content

Commit 1ad69bc

Browse files
committed
Update local Docker images.
1 parent ca39416 commit 1ad69bc

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

docker/docker-compose.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: '3'
2-
31
services:
42
mssql:
53
image: mcr.microsoft.com/mssql/server:2017-CU17-ubuntu
@@ -10,14 +8,14 @@ services:
108
SA_PASSWORD: P@ssw0rd
119

1210
mysql:
13-
image: mysql:5.7.40
11+
image: mysql:8.4
1412
ports:
1513
- "3306:3306"
1614
environment:
1715
MYSQL_ROOT_PASSWORD: test
1816

1917
postgres:
20-
image: postgres:15-alpine
18+
image: postgres:17-alpine
2119
ports:
2220
- "5432:5432"
2321
environment:

docker/setup/setup.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ docker exec -e PGPASSWORD=test ado-postgres-1 psql -U root -c "CREATE DATABASE n
1515
docker exec -e PGPASSWORD=test ado-postgres-1 psql -U root -c "CREATE DATABASE npgsql5;"
1616
docker exec -e PGPASSWORD=test ado-postgres-1 psql -U root -c "CREATE DATABASE npgsql6;"
1717
docker exec -e PGPASSWORD=test ado-postgres-1 psql -U root -c "CREATE DATABASE npgsql7;"
18-
echo 'done'
18+
docker exec -e PGPASSWORD=test ado-postgres-1 psql -U root -c "CREATE DATABASE npgsql8;"
19+
echo 'done'

tests/Npgsql8.Tests/Npgsql8DbFactoryFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ namespace Npgsql8.Tests;
33
public class Npgsql8DbFactoryFixture : IDbFactoryFixture
44
{
55
public DbProviderFactory Factory => NpgsqlFactory.Instance;
6-
public string ConnectionString => "host=localhost;user id=root;password=test;database=Npgsql8";
6+
public string ConnectionString => "host=localhost;user id=root;password=test;database=npgsql8";
77
}

0 commit comments

Comments
 (0)