CoolFace
Apppublic

TystmM/vertex2open

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
docker-compose.yml20 linesDownload Raw Back to root
1version: '3.8'2 3services:4  openai-to-gemini:5    build:6      context: .7      dockerfile: Dockerfile8    ports:9      # Map host port 8050 to container port 7860 (for Hugging Face compatibility)10      - "8050:7860"11    volumes:12      - ./credentials:/app/credentials13    environment:14      # This is kept for backward compatibility but our app now primarily uses the credential manager15      - GOOGLE_APPLICATION_CREDENTIALS=/app/credentials/service-account.json16      # Directory where credential files are stored (used by credential manager)17      - CREDENTIALS_DIR=/app/credentials18      # API key for authentication (default: 123456)19      - API_KEY=12345620    restart: unless-stopped