Skip to content

Commit 59a8c7f

Browse files
committed
fix: adjust e-mail parsing and docker compose file
1 parent 8e9531b commit 59a8c7f

5 files changed

Lines changed: 983 additions & 934 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ recreate: ## Recreate all containers.
3131

3232
.PHONY: up-database
3333
up-database: ## Start database container.
34-
$(COMPOSE) -f ./docker-compose.yml up -d database --force-recreate
34+
$(COMPOSE) -f ./docker-compose.yml up -d sso-db --force-recreate
3535

3636
.PHONY: down
3737
down: ## Stop all containers.

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
ports:
1111
- "${SSO_PORT:-3001}:3000"
1212
depends_on:
13-
- database
13+
- sso-db
1414

1515
sso-db:
1616
image: postgres:16.3

0 commit comments

Comments
 (0)