Fix port conflicts: PostgreSQL 5432->5433, Redis 6379->6380
This commit is contained in:
parent
2c1ec69a79
commit
6ac7d5a791
|
|
@ -3,10 +3,10 @@ PORT=3001
|
||||||
NODE_ENV=development
|
NODE_ENV=development
|
||||||
|
|
||||||
# Database
|
# Database
|
||||||
DATABASE_URL=postgresql://user:password@localhost:5432/website_monitor
|
DATABASE_URL=postgresql://admin:admin123@localhost:5433/website_monitor
|
||||||
|
|
||||||
# Redis
|
# Redis
|
||||||
REDIS_URL=redis://localhost:6379
|
REDIS_URL=redis://localhost:6380
|
||||||
|
|
||||||
# JWT
|
# JWT
|
||||||
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
|
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1 @@
|
||||||
|
/c/Users/timo/Documents/Websites/website-monitor/backend
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
/c/Users/timo/Documents/Websites/website-monitor/backend
|
||||||
|
|
@ -1,5 +1,3 @@
|
||||||
version: '3.8'
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:15-alpine
|
image: postgres:15-alpine
|
||||||
|
|
@ -9,7 +7,7 @@ services:
|
||||||
POSTGRES_USER: admin
|
POSTGRES_USER: admin
|
||||||
POSTGRES_PASSWORD: admin123
|
POSTGRES_PASSWORD: admin123
|
||||||
ports:
|
ports:
|
||||||
- "5432:5432"
|
- "5433:5432"
|
||||||
volumes:
|
volumes:
|
||||||
- postgres_data:/var/lib/postgresql/data
|
- postgres_data:/var/lib/postgresql/data
|
||||||
healthcheck:
|
healthcheck:
|
||||||
|
|
@ -22,7 +20,7 @@ services:
|
||||||
image: redis:7-alpine
|
image: redis:7-alpine
|
||||||
container_name: website-monitor-redis
|
container_name: website-monitor-redis
|
||||||
ports:
|
ports:
|
||||||
- "6379:6379"
|
- "6380:6379"
|
||||||
volumes:
|
volumes:
|
||||||
- redis_data:/data
|
- redis_data:/data
|
||||||
healthcheck:
|
healthcheck:
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1 @@
|
||||||
|
/c/Users/timo/Documents/Websites/website-monitor/frontend
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
/c/Users/timo/Documents/Websites/website-monitor
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
/c/Users/timo/Documents/Websites/website-monitor
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
/c/Users/timo/Documents/Websites/website-monitor
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
/c/Users/timo/Documents/Websites/website-monitor
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
/c/Users/timo/Documents/Websites/website-monitor
|
||||||
Loading…
Reference in New Issue