-
-
Notifications
You must be signed in to change notification settings - Fork 609
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup docker-compose configuration (#5335)
- Remove environment variables no longer referenced in CI - Standardize `environment` mapping to use key + value - Standardize on two space indent - Alias `image` to make version updates easier Fixes #5334
- Loading branch information
1 parent
95b77db
commit e5bff38
Showing
2 changed files
with
86 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,7 @@ | ||
version: '3' | ||
services: | ||
boulder: | ||
environment: | ||
FAKE_DNS: 10.77.77.77 | ||
BOULDER_CONFIG_DIR: test/config-next | ||
GOFLAGS: -mod=vendor | ||
# This is required so Python doesn't throw an error when printing | ||
# non-ASCII to stdout. | ||
PYTHONIOENCODING: utf-8 | ||
# These are variables you can set to affect what tests get run or | ||
# how they are run. Including them here with no value means they are | ||
# passed through from the environment. | ||
RUN: "" | ||
INT_FILTER: "" | ||
RACE: "" | ||
boulder: | ||
environment: | ||
FAKE_DNS: 10.77.77.77 | ||
BOULDER_CONFIG_DIR: test/config-next | ||
GOFLAGS: -mod=vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters