Skip to content

Commit

Permalink
fix: expose redis container on port 6380 📦 (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramiAbdou authored Apr 5, 2024
1 parent 62703a2 commit bf84414
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/admin-dashboard/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ API_URL=http://localhost:8080
DATABASE_URL=postgresql://oyster:oyster@localhost:5433/oyster
ENVIRONMENT=development
JWT_SECRET=_
REDIS_URL=redis://localhost:6379
REDIS_URL=redis://localhost:6380
SESSION_SECRET=_

# Optional for development, but won't be able to run certain features...
Expand Down
2 changes: 1 addition & 1 deletion apps/api/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ API_URL=http://localhost:8080
DATABASE_URL=postgresql://oyster:oyster@localhost:5433/oyster
ENVIRONMENT=development
JWT_SECRET=_
REDIS_URL=redis://localhost:6379
REDIS_URL=redis://localhost:6380
PORT=8080
STUDENT_PROFILE_URL=http://localhost:3000

Expand Down
2 changes: 1 addition & 1 deletion apps/member-profile/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ API_URL=http://localhost:8080
DATABASE_URL=postgresql://oyster:oyster@localhost:5433/oyster
ENVIRONMENT=development
JWT_SECRET=_
REDIS_URL=redis://localhost:6379
REDIS_URL=redis://localhost:6380
SESSION_SECRET=_
STUDENT_PROFILE_URL=http://localhost:3000

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ services:
container_name: oyster-redis
image: redis:latest
ports:
- 6379:6379
- 6380:6379
volumes:
- redis_data:/data

Expand Down

0 comments on commit bf84414

Please sign in to comment.