Spaces:
Runtime error
Runtime error
File size: 663 Bytes
3e5ffe5 3b29350 3e5ffe5 3b29350 3e5ffe5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
version: '3.8'
services:
database-api:
build:
context: .
target: nodeapi
ports:
- "3000:3000"
environment:
- JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
- ADMIN_PASSWORD=DataMaster2024!
- NODE_ENV=production
volumes:
- ./data:/usr/src/app/data
- ./datasets:/usr/src/app/datasets
restart: unless-stopped
flask-api:
build:
context: .
target: flaskapi
command: python flask_api.py
environment:
- DATASETS_DIR=/usr/src/app/datasets
volumes:
- ./datasets:/usr/src/app/datasets
ports:
- "5000:5000"
restart: unless-stopped |