Initial commit

This commit is contained in:
alex alves
2026-06-15 11:16:17 -03:00
commit 0080a47d3d
9 changed files with 558 additions and 0 deletions

16
docker-compose.yaml Normal file
View File

@@ -0,0 +1,16 @@
services:
litellm:
build:
context: .
dockerfile: Dockerfile
image: litellm-oci-proxy:latest
container_name: litellm-oci-proxy
restart: unless-stopped
env_file:
- .env
ports:
- "4000:4000"
volumes:
- ./secrets/oci_api_key.pem:/app/oci_api_key.pem:ro,Z
command: ["--config", "/app/config.yaml", "--port", "4000"]