-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (38 loc) · 1.04 KB
/
docker-compose.yml
File metadata and controls
40 lines (38 loc) · 1.04 KB
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
30
31
32
33
34
35
36
37
38
39
40
services:
qwitix-api:
container_name: qwitix-api
image: qwitix-api
build:
context: .
dockerfile: qwitix-api/Dockerfile
args:
- ASPNETCORE_HTTP_PORTS=8080
- ASPNETCORE_ENVIRONMENT
- DatabaseSettings__ConnectionString
- AzureBlobStorage__ConnectionString
- AzureBlobStorage__ContainerName
- JwtSettings__Issuer
- JwtSettings__Audience
- JwtSettings__Secret
- StripeSettings__PublishableKey
- StripeSettings__SecretKey
- StripeSettings__WebhookSecret
- Authentication__Google__ClientId
- Authentication__Google__ClientSecret
- CorsOptions__AllowedOriginsRaw
ports:
- "8080:8080"
depends_on:
- mongo
mongo:
container_name: mongo
image: mongo:latest
ports:
- "27017:27017"
volumes:
- mongodb-data:/data/db
environment:
MONGO_INITDB_ROOT_USERNAME: ${MONGO_INITDB_ROOT_USERNAME}
MONGO_INITDB_ROOT_PASSWORD: ${MONGO_INITDB_ROOT_PASSWORD}
volumes:
mongodb-data: