-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
37 lines (32 loc) · 969 Bytes
/
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
26
27
28
29
30
31
32
33
34
35
36
version: "2.3"
services:
unprotected-server:
image: approov/dotnet:6.0
build: ./
networks:
- default
command: bash -c "dotnet run"
ports:
- ${HOST_IP:-127.0.0.1}:${HTTP_PORT:-8002}:${HTTP_PORT:-8002}
volumes:
- ./servers/hello/src/unprotected-server:/home/developer/workspace
approov-token-check:
image: approov/dotnet:6.0
build: ./
networks:
- default
command: bash -c "dotnet run"
ports:
- ${HOST_IP:-127.0.0.1}:${HTTP_PORT:-8002}:${HTTP_PORT:-8002}
volumes:
- ./servers/hello/src/approov-protected-server/token-check:/home/developer/workspace
approov-token-binding-check:
image: approov/dotnet:6.0
build: ./
networks:
- default
command: bash -c "dotnet run"
ports:
- ${HOST_IP:-127.0.0.1}:${HTTP_PORT:-8002}:${HTTP_PORT:-8002}
volumes:
- ./servers/hello/src/approov-protected-server/token-binding-check:/home/developer/workspace