-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (26 loc) · 873 Bytes
/
docker-compose.yml
File metadata and controls
29 lines (26 loc) · 873 Bytes
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
26
27
28
29
services:
deploy:
container_name: lulc-deploy
image: lulc
build:
context: .
dockerfile: Dockerfile
environment:
# For Terraform
- TF_VAR_username=${USER}
- TF_VAR_subscriptionId=${subscriptionId}
- TF_VAR_postgres_password=${postgresPassword}
- TF_VAR_signing_secret=${signingSecret}
- TF_VAR_auth0BaseUrl=${auth0BaseUrl}
- ARM_SUBSCRIPTION_ID=${subscriptionId}
- ARM_TENANT_ID=${tenantId}
- ARM_CLIENT_ID=${servicePrincipalId}
- ARM_CLIENT_SECRET=${servicePrincipalKey}
- ARM_ACCESS_KEY=${storageAccessKey}
# For Azure CLI
- AZURE_TENANT_ID=${tenantId}
- AZURE_CLIENT_ID=${servicePrincipalId}
- AZURE_CLIENT_SECRET=${servicePrincipalKey}
# For deployment
volumes:
- .:/opt/src