-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
44 lines (39 loc) · 913 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
37
38
39
40
41
42
43
44
# docker-compose file for dev environment.
#
# This file is generated automatically from docker/docker-compose.yml.jinja2, do not
# edit manually. To edit do:
# - edit docker/docker-compose.yml.jinja2
# - fab jinja_render
# - commit generated files
#
version: "3.3"
services:
oauth2-server:
ports:
- target: 8000
published: 5001
image: oauth2-server
build: ./oauth2_server/
volumes:
- ./oauth2_server/configs:/app/configs
resource-server:
ports:
- target: 8000
published: 5002
image: resource-server
build: ./resource_server/
volumes:
- ./resource_server/configs:/app/configs
depends_on:
- oauth2-server
webapp:
ports:
- target: 8000
published: 5003
image: webapp
build: ./webapp/
volumes:
- ./webapp/configs:/app/configs
depends_on:
- oauth2-server
- resource-server