Skip to content

Commit

Permalink
Update config.yml
Browse files Browse the repository at this point in the history
Fixed the wrong name. Added some comments.
  • Loading branch information
nhkhai committed Apr 30, 2024
1 parent 0fe605b commit 690f6b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
PGHOST: 127.0.0.1
- image: cimg/postgres:16.2
environment:
POSTGRES_PASSWORD: password
POSTGRES_DB: the_review_room
POSTGRES_PASSWORD: password # Must not be empty or undefined. It is trust authentication locally (inside the same container) so the password is not actually used.
POSTGRES_DB: the_review_room # This optional environment variable defines the default database created when the image is first started (default is postgres).

steps:
- checkout # Check out source code to the working directory.
Expand All @@ -31,7 +31,7 @@ jobs:
- image: cimg/base:current

environment: # The environment allows us to create an environment for the job and allows us to create custom environment variables.
IMAGE_NAME: nhkhai/education-space
IMAGE_NAME: nhkhai/the-review-room

steps:
- checkout
Expand Down

0 comments on commit 690f6b2

Please sign in to comment.