From 89b4e7f2a2bb6d663fcc96b352572c52eb69feb7 Mon Sep 17 00:00:00 2001 From: "Ryan B. Harvey" Date: Fri, 28 Oct 2022 00:56:53 -0500 Subject: [PATCH] Fix devcontainer build failure due to env var being interpreted as non-string (#2844) --- .devcontainer/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/docker-compose.yml index 11c8c9f3..05475b82 100644 --- a/.devcontainer/docker-compose.yml +++ b/.devcontainer/docker-compose.yml @@ -27,7 +27,7 @@ services: PGHOST: db # set this to true in the development environment until I can get SSL setup on the # docker postgres instance - PGTESTNOSSL: true + PGTESTNOSSL: 'true' # Overrides default command so things don't shut down after the process ends. command: sleep infinity