rename the app to scoffer...everywhere

This commit is contained in:
2025-08-09 17:54:32 +01:00
parent 591ebdf5db
commit 8029d10264
11 changed files with 24 additions and 28 deletions

View File

@@ -4,7 +4,7 @@ services:
# MongoDB Database
mongodb:
image: mongo:7.0
container_name: recipe-management-mongodb
container_name: scoffer-mongodb
restart: unless-stopped
ports:
- "27017:27017"
@@ -25,13 +25,13 @@ services:
build:
context: ./backend
dockerfile: Dockerfile
container_name: recipe-management-backend
container_name: scoffer-backend
restart: unless-stopped
environment:
- PORT=5000
- MONGODB_HOST=mongodb
- MONGODB_PORT=27017
- MONGODB_DATABASE=recipe-management
- MONGODB_DATABASE=scoffer
- JWT_SECRET=${JWT_SECRET}
ports:
- "5000:5000"
@@ -49,7 +49,7 @@ services:
build:
context: ./frontend
dockerfile: Dockerfile
container_name: recipe-management-frontend
container_name: scoffer-frontend
restart: unless-stopped
ports:
- "3000:80"
@@ -63,7 +63,7 @@ services:
# Optional: MongoDB Express for database management
mongo-express:
image: mongo-express:1.0.0
container_name: recipe-management-mongo-express
container_name: scoffer-mongo-express
restart: unless-stopped
ports:
- "8081:8081"