File size: 376 Bytes
b63c874 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
version: '3.8'
services:
e2b-api-proxy:
build: .
container_name: e2b-api-proxy
ports:
- "7860:7860"
environment:
- API_BASE_URL=https://fragments.e2b.dev
- API_KEY=sk-123456 # Replace with your actual API key
restart: unless-stopped
volumes:
- ./app.py:/app/app.py # For development - allows code changes without rebuilding |