We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63be32e commit 92ba6f7Copy full SHA for 92ba6f7
.circleci/devcluster/postgres-with-ssl.devcluster.yaml
@@ -12,7 +12,7 @@ stages:
12
cd /tmp/pg
13
openssl req -new -x509 -days 365 -nodes -text -out server.crt -keyout server.key -subj "/CN=localhost"
14
chmod 0400 server.crt server.key
15
- uid=$(docker run --rm "postgres:{$DET_POSTGRES_VERSION}" id -u postgres)
+ uid=$(docker run --rm "postgres:${DET_POSTGRES_VERSION}" id -u postgres)
16
sudo chown $uid server.crt server.key
17
cat >pg_hba.conf <<EOF
18
local all all trust
@@ -34,7 +34,7 @@ stages:
34
- POSTGRES_INITDB_ARGS=--auth-host=scram-sha-256 --auth-local=scram-sha-256
35
- -v
36
- /tmp/pg:/tmp/pg
37
- - "postgres:{$DET_POSTGRES_VERSION}"
+ - "postgres:${DET_POSTGRES_VERSION}"
38
- postgres
39
- -c
40
- ssl=true
0 commit comments