vertex2openai / docker-compose.yml
dlzs's picture
Upload 6 files
1cd4fb4 verified
raw
history blame contribute delete
625 Bytes
version: '3.8'
services:
openai-to-gemini:
build:
context: .
dockerfile: Dockerfile
ports:
- "8050:8050"
volumes:
- ./credentials:/app/credentials
environment:
# This is kept for backward compatibility but our app now primarily uses the credential manager
- GOOGLE_APPLICATION_CREDENTIALS=/app/credentials/service-account.json
# Directory where credential files are stored (used by credential manager)
- CREDENTIALS_DIR=/app/credentials
# API key for authentication (default: 123456)
- API_KEY=123456
restart: unless-stopped