Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
app.blastastic.com
/
blastastic-complete-backup_3March26
/
Filename :
compose.yml
back
Copy
version: '3.9' services: frontend: container_name: frontend image: frontend build: context: ./next-frontend dockerfile: frontend.dockerfile ports: - 3000:3000 environment: - NEXT_PUBLIC_API_URL=http://localhost:4000 restart: always depends_on: - backend backend: container_name: backend image: backend build: context: ./exp-backend dockerfile: backend.dockerfile ports: - 8000:8000 environment: - MONGO_URI=mongodb+srv://talhathegreat1:hdoWY4itS4pzccGs@cluster0.opsn6gi.mongodb.net/?retryWrites=true&w=majority # Update with your MongoDB URI depends_on: - mongo mongo: container_name: mongo image: mongo:latest restart: always ports: - 27017:27017 volumes: - mongodata:/data/db volumes: mongodata: {}