-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (45 loc) · 1.11 KB
/
docker-compose.yml
File metadata and controls
45 lines (45 loc) · 1.11 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
41
42
43
44
45
services:
app:
build:
context: .
dockerfile: Dockerfile
no_cache: false
image: bitcoin-web-api
container_name: bitcoin-web-api
ports:
- 8080:8080
environment:
ASPNETCORE_ENVIRONMENT: Development
ASPNETCORE_HTTP_PORTS: $ASPNETCORE_HTTP_PORTS
KEY_VAULT_NAME: $KEY_VAULT_NAME
USE_JSON_FORMATTING: true
USE_OUTPUT_CACHE: $USE_OUTPUT_CACHE
USE_RATE_LIMITER: $USE_RATE_LIMITER
SHOW_MOCK_SERVER_LOGS: false
TESTING_LOG_LEVEL: Warning
API_URL: http://wiremock:8080
user: app
read_only: true
privileged: false
tmpfs:
- /tmp:rw
depends_on:
- wiremock
wiremock:
image: wiremock/wiremock:4.0.0-beta.29-alpine
container_name: wiremock
ports:
- 9091:8080
read_only: false
privileged: true
volumes:
- ./wiremock:/home/wiremock/mappings
playwright:
build:
context: .
dockerfile: tests/Dockerfile
no_cache: false
container_name: playwright
read_only: false
privileged: true
command: dotnet test --project tests/E2ETests -c Release --no-restore