-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
23 lines (22 loc) · 945 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
23 lines (22 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
version: "3.3"
services:
web:
build: ./
command: uvicorn app.main:app --reload --workers 1 --host 0.0.0.0 --port 80
volumes:
- ./:/app
ports:
- 80:80
environment:
- SERVER_HOST=${SERVER_HOST?Variable not set}
- SERVER_NAME=${SERVER_NAME?Variable not set}
- PROJECT_NAME=${PROJECT_NAME?Variable not set}
- BACKEND_CORS_ORIGINS=${BACKEND_CORS_ORIGINS?Variable not set}
- ZOHO_REDIRECT_URI=${ZOHO_REDIRECT_URI?Variable not set}
- ZOHO_CLIENT_ID=${ZOHO_CLIENT_ID?Variable not set}
- ZOHO_CLIENT_SECRET=${ZOHO_CLIENT_SECRET?Variable not set}
- ZOHO_ACCESS_TOKEN=${ZOHO_ACCESS_TOKEN?Variable not set}
- ZOHO_REFRESH_TOKEN=${ZOHO_REFRESH_TOKEN?Variable not set}
- ZOHO_AUTHORIZATION_CODE=${ZOHO_AUTHORIZATION_CODE?Variable not set}
- ZOHO_OAUTH_SCOPES=${ZOHO_OAUTH_SCOPES?Variable not set}
- ZOHO_DEPARTMENTS=${ZOHO_DEPARTMENTS?Variable not set}