Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Remove another --rm
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Telatynski <[email protected]>
  • Loading branch information
t3chguy committed Feb 19, 2024
1 parent 5c95bb8 commit 79fb857
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playwright/plugins/sliding-sync-proxy/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class SlidingSyncProxy {
const postgresId = await this.postgresDocker.run({
image: "postgres",
containerName: "react-sdk-playwright-sliding-sync-postgres",
params: ["--rm", "-e", `POSTGRES_PASSWORD=${PG_PASSWORD}`],
params: ["-e", `POSTGRES_PASSWORD=${PG_PASSWORD}`],
});

const postgresIp = await this.postgresDocker.getContainerIp();
Expand Down

0 comments on commit 79fb857

Please sign in to comment.