We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ea630cd + a9753d1 commit ee89ecaCopy full SHA for ee89eca
app/Services/PostgreSql.php
@@ -23,7 +23,7 @@ class PostgreSql extends BaseService
23
24
protected $dockerRunTemplate = '-p "${:port}":5432 \
25
-e POSTGRES_PASSWORD="${:root_password}" \
26
- -v "${:volume}":/var/lib/postgresql/data \
+ -v "${:volume}":/var/lib/postgresql \
27
"${:organization}"/"${:image_name}":"${:tag}"';
28
29
protected static $displayName = 'PostgreSQL';
tests/Feature/DockerTagsTest.php
@@ -41,7 +41,7 @@ public function it_sorts_the_versions_naturally()
41
$tags = collect($dockerTags->getTags());
42
43
$this->assertEquals('latest', $tags->shift());
44
- $this->assertEquals('17.5', $tags->shift());
+ $this->assertEquals('18.1', $tags->shift());
45
}
46
47
/**
0 commit comments