Skip to content

Commit 92ba6f7

Browse files
committed
circleci config fix
1 parent 63be32e commit 92ba6f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/devcluster/postgres-with-ssl.devcluster.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ stages:
1212
cd /tmp/pg
1313
openssl req -new -x509 -days 365 -nodes -text -out server.crt -keyout server.key -subj "/CN=localhost"
1414
chmod 0400 server.crt server.key
15-
uid=$(docker run --rm "postgres:{$DET_POSTGRES_VERSION}" id -u postgres)
15+
uid=$(docker run --rm "postgres:${DET_POSTGRES_VERSION}" id -u postgres)
1616
sudo chown $uid server.crt server.key
1717
cat >pg_hba.conf <<EOF
1818
local all all trust
@@ -34,7 +34,7 @@ stages:
3434
- POSTGRES_INITDB_ARGS=--auth-host=scram-sha-256 --auth-local=scram-sha-256
3535
- -v
3636
- /tmp/pg:/tmp/pg
37-
- "postgres:{$DET_POSTGRES_VERSION}"
37+
- "postgres:${DET_POSTGRES_VERSION}"
3838
- postgres
3939
- -c
4040
- ssl=true

0 commit comments

Comments
 (0)