Skip to content

Commit 89b4e7f

Browse files
authored
Fix devcontainer build failure due to env var being interpreted as non-string (brianc#2844)
1 parent 5538df6 commit 89b4e7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.devcontainer/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ services:
2727
PGHOST: db
2828
# set this to true in the development environment until I can get SSL setup on the
2929
# docker postgres instance
30-
PGTESTNOSSL: true
30+
PGTESTNOSSL: 'true'
3131

3232
# Overrides default command so things don't shut down after the process ends.
3333
command: sleep infinity

0 commit comments

Comments
 (0)