Skip to content

Commit

Permalink
fix: docker compose redis/auth
Browse files Browse the repository at this point in the history
  • Loading branch information
bookpanda committed Jan 24, 2024
1 parent e7e8552 commit 4a72dbf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docker-compose-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
- local-cache
restart: unless-stopped
environment:
- APP_PORT=3004
- APP_PORT=3002
- APP_ENV=production
- APP_SECRET=secret
- DB_URL=postgres://root:root@local-db:5432/johnjud_db
Expand All @@ -32,7 +32,7 @@ services:
- JWT_REFRESH_TOKEN_TTL=604800
- JWT_ISSUER=issuer
- JWT_RESET_TOKEN_TTL=900
- REDIS_HOST=localhost
- REDIS_HOST=local-cache
- REDIS_PORT=6379
- REDIS_PASSWORD=
- AUTH_CLIENT_URL=http://localhost:3000
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
- local-cache
restart: unless-stopped
environment:
- APP_PORT=3004
- APP_PORT=3002
- APP_ENV=development
- APP_SECRET=secret
- DB_URL=postgres://root:root@local-db:5432/johnjud_db
Expand All @@ -18,7 +18,7 @@ services:
- JWT_REFRESH_TOKEN_TTL=604800
- JWT_ISSUER=issuer
- JWT_RESET_TOKEN_TTL=900
- REDIS_HOST=localhost
- REDIS_HOST=local-cache
- REDIS_PORT=6379
- REDIS_PASSWORD=
- AUTH_CLIENT_URL=http://localhost:3000
Expand Down

0 comments on commit 4a72dbf

Please sign in to comment.