-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocker-compose.yml
25 lines (24 loc) · 1.01 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
version: "3.8"
services:
registry-backend:
image: cosmtrek/air
working_dir: /app
ports:
- "8080:8080"
volumes:
- ./:/app # Ensure this matches the working_dir
- $HOME/.config/gcloud/application_default_credentials.json:/tmp/keys/application_default_credentials.json
environment:
DRIP_ENV: localdev
DB_CONNECTION_STRING: "user=postgres password=postgres host=host.docker.internal port=54322 dbname=postgres"
GOOGLE_APPLICATION_CREDENTIALS: /tmp/keys/application_default_credentials.json # This will be set in prod by GCP.
GOOGLE_CLOUD_PROJECT: "dreamboothy-dev" # This will be set in prod by GCP.
PROJECT_ID: "dreamboothy-dev"
CORS_ORIGIN: "http://localhost:3000"
JWT_SECRET: 8zT9YknYUTZRVAkgov86gT1NLezTtwrd # test secret
LOG_LEVEL: info # Set the log level here
ALGOLIA_APP_ID:
ALGOLIA_API_KEY:
SECRET_SCANNER_URL: ""
CLOUD_STORAGE_BUCKET_NAME: "staging-comfy-registry"
PUBSUB_TOPIC: comfy-registry-event-staging