Skip to content

Commit ee89eca

Browse files
authored
Merge pull request #384 from williamjulianvicary/patch-1
Update PostgreSql.php for v18
2 parents ea630cd + a9753d1 commit ee89eca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/Services/PostgreSql.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class PostgreSql extends BaseService
2323

2424
protected $dockerRunTemplate = '-p "${:port}":5432 \
2525
-e POSTGRES_PASSWORD="${:root_password}" \
26-
-v "${:volume}":/var/lib/postgresql/data \
26+
-v "${:volume}":/var/lib/postgresql \
2727
"${:organization}"/"${:image_name}":"${:tag}"';
2828

2929
protected static $displayName = 'PostgreSQL';

tests/Feature/DockerTagsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function it_sorts_the_versions_naturally()
4141
$tags = collect($dockerTags->getTags());
4242

4343
$this->assertEquals('latest', $tags->shift());
44-
$this->assertEquals('17.5', $tags->shift());
44+
$this->assertEquals('18.1', $tags->shift());
4545
}
4646

4747
/**

0 commit comments

Comments
 (0)