sana0721/vertex
0
1version: '3.8'2 3services:4 openai-to-gemini:5 image: ghcr.io/gzzhongqi/vertex2openai:latest6 container_name: vertex2openai7 ports:8 # Map host port 8050 to container port 7860 (for Hugging Face compatibility)9 - "8050:7860"10 volumes:11 - ./credentials:/app/credentials12 environment:13 # Directory where credential files are stored (used by credential manager)14 - CREDENTIALS_DIR=/app/credentials15 # API key for authentication (default: 123456)16 - API_KEY=12345617 # Enable/disable fake streaming (default: false)18 - FAKE_STREAMING=false19 # Interval for fake streaming keep-alive messages (default: 1.0)20 - FAKE_STREAMING_INTERVAL=1.021 restart: unless-stopped22 