-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
61 lines (57 loc) · 1.23 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
version: "3"
services:
client:
tty: true
build:
context: .
dockerfile: Dockerfile
ports:
- 10000:10000
volumes:
- .:/home/oauth
environment:
- SECRET_KEY=yLxbyA1Vo0MBPV4CYmoUBsqYnxh8ygwW
- UWSGI_INI=/home/oauth/client/uwsgi.ini
- LISTEN_PORT=10000
restart: always
auth_server:
tty: true
build:
context: .
dockerfile: Dockerfile
ports:
- 10001:10001
volumes:
- .:/home/oauth
environment:
- SECRET_KEY=yLxbyA1Vo0MBPV4CYmoUBsqYnxh8ygwW
- UWSGI_INI=/home/oauth/authorizationServer/uwsgi.ini
- LISTEN_PORT=10001
restart: always
protected_resource:
tty: true
build:
context: .
dockerfile: Dockerfile
ports:
- 10002:10002
volumes:
- .:/home/oauth
environment:
- SECRET_KEY=yLxbyA1Vo0MBPV4CYmoUBsqYnxh8ygwW
- UWSGI_INI=/home/oauth/protectedResource/uwsgi.ini
- LISTEN_PORT=10002
restart: always
crawler:
tty: true
build:
context: .
dockerfile: Dockerfile
ports:
- 10003:10003
volumes:
- .:/home/oauth
environment:
- UWSGI_INI=/home/oauth/crawler/uwsgi.ini
- LISTEN_PORT=10003
restart: always