From 0e7c153217001c16f4761315a6c70bd64470ea0f Mon Sep 17 00:00:00 2001 From: joshdentremont Date: Wed, 23 Feb 2022 15:29:36 -0400 Subject: [PATCH] Update to sample.env to change defaults In production, USE_SECRETS should be true and INCLUDE_WATCHTOWER_SERVICE should be false. We should change the defaults so that people need to opt out of secrets and opt in to watchtower. --- sample.env | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sample.env b/sample.env index 0199f0c8a..43198b28d 100644 --- a/sample.env +++ b/sample.env @@ -12,7 +12,7 @@ ENVIRONMENT=demo # Enable this to generate a docker-compose file that uses secrets. # If you're running staging, CI, or production, set to true. -USE_SECRETS=false +USE_SECRETS=true ############################################################################### # Environment variables specific to composer. @@ -37,7 +37,7 @@ PROJECT_DRUPAL_DOCKERFILE=Dockerfile INCLUDE_TRAEFIK_SERVICE=true # Includes `watchtower` as a service. -INCLUDE_WATCHTOWER_SERVICE=true +INCLUDE_WATCHTOWER_SERVICE=false # Includes `etcd` as a service. INCLUDE_ETCD_SERVICE=false