Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:

# Define environment variables that will be available to all steps within this job.
env:
MONGO_HOST: mongo
MONGO_PORT: 27017
MONGO_USERNAME: admin
MONGO_PASSWORD: root
MONGO_DATABASE: bertron
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ services:
# host environment.
# Docs: https://docs.docker.com/compose/how-tos/environment-variables/variable-interpolation/#additional-information
environment:
MONGO_HOST: ${MONGO_HOST:?}
MONGO_PORT: ${MONGO_PORT:?}
MONGO_HOST: mongo
MONGO_PORT: 27017
MONGO_USERNAME: ${MONGO_USERNAME:?}
MONGO_PASSWORD: ${MONGO_PASSWORD:?}
MONGO_DATABASE: ${MONGO_DATABASE:?}
Expand Down Expand Up @@ -65,8 +65,8 @@ services:
# This service should not start automatically - only run on demand
profiles: ["tools"]
environment:
MONGO_HOST: ${MONGO_HOST:?}
MONGO_PORT: ${MONGO_PORT:?}
MONGO_HOST: mongo
MONGO_PORT: 27017
MONGO_USERNAME: ${MONGO_USERNAME:?}
MONGO_PASSWORD: ${MONGO_PASSWORD:?}
MONGO_DATABASE: ${MONGO_DATABASE:?} # the test suite will disregard this
Expand Down