updated docker-compose.yml
This commit is contained in:
@@ -1,7 +1,4 @@
|
||||
# Postgres
|
||||
DB_USER=postgres
|
||||
DB_PASSWORD=password
|
||||
DB_NAME=nestjs_blog
|
||||
|
||||
|
||||
# Backend (NestJS)
|
||||
NODE_ENV=production
|
||||
@@ -9,9 +6,12 @@ HOST=0.0.0.0
|
||||
BACKEND_PORT=3001
|
||||
APP_URL=http://localhost:3001
|
||||
|
||||
DB_HOST=postgres
|
||||
DB_HOST=your-remote-db-host.example.com
|
||||
DB_PORT=5432
|
||||
DB_SSL=false
|
||||
DB_USER=your_db_user
|
||||
DB_PASSWORD=your_db_password
|
||||
DB_NAME=your_db_name
|
||||
DB_SSL=false
|
||||
|
||||
JWT_ACCESS_SECRET=change-me-access-secret-at-least-32-chars
|
||||
JWT_REFRESH_SECRET=change-me-refresh-secret-at-least-32-chars
|
||||
|
||||
Reference in New Issue
Block a user