From 18bf377701cdc5e7404675d090f30af5942907d9 Mon Sep 17 00:00:00 2001 From: Jordan Stephens Date: Thu, 16 Oct 2025 15:51:08 -0700 Subject: [PATCH] add compose.yaml to easily test gateway deployed to aws or gcp --- compose.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 compose.yaml diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 00000000..22b74a46 --- /dev/null +++ b/compose.yaml @@ -0,0 +1,28 @@ +services: + gcpgateway: + build: + context: ./src + dockerfile: Dockerfile_ecs + ports: + - "8080:80" + environment: + - OPENAI_API_KEY=secret + - GCP_PROJECT_ID=my-project-123456 + - GCP_REGION=us-central1 + - PORT=80 + volumes: + - ~/.config/gcloud/:/root/.config/gcloud + awsgateway: + build: + context: ./src + dockerfile: Dockerfile_ecs + ports: + - "8081:80" + environment: + - OPENAI_API_KEY=secret + - AWS_REGION=us-west-2 + - AWS_ACCESS_KEY_ID=your-access-key-id + - AWS_SECRET_ACCESS_KEY=your-secret-access-key + - PORT=80 + volumes: + - ~/.aws/:/root/.aws