Skip to content

Commit 67cf3bb

Browse files
fix: Update Docker image tag from 'latest' to '6' in createDockerDB function
1 parent 572d2a5 commit 67cf3bb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

drizzle-kit/tests/introspect/gel.ext.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ let container: Docker.Container | undefined;
2525
async function createDockerDB(): Promise<{ connectionString: string; container: Docker.Container }> {
2626
const docker = new Docker();
2727
const port = await getPort({ port: 5656 });
28-
const image = 'geldata/gel:latest';
28+
const image = 'geldata/gel:6';
2929

3030
const pullStream = await docker.pull(image);
3131
await new Promise((resolve, reject) =>

integration-tests/tests/gel/createInstance.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import 'zx/globals';
66
export async function createDockerDB(): Promise<{ connectionString: string; container: Docker.Container }> {
77
const docker = new Docker();
88
const port = await getPort({ port: 5656 });
9-
const image = 'geldata/gel:latest';
9+
const image = 'geldata/gel:6';
1010

1111
const pullStream = await docker.pull(image);
1212
await new Promise((resolve, reject) =>

0 commit comments

Comments
 (0)