forked from mwinteringham/restful-booker-platform
-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
42 lines (42 loc) · 1.04 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
version: '3.7'
services:
rbp-booking:
image: mwinteringham/restfulbookerplatform_booking:1.6.a1fd0e5
ports:
- "3000:3000"
restart: always
rbp-room:
image: mwinteringham/restfulbookerplatform_room:1.6.a1fd0e5
ports:
- "3001:3001"
restart: always
rbp-branding:
image: mwinteringham/restfulbookerplatform_branding:1.6.a1fd0e5
ports:
- "3002:3002"
restart: always
rbp-assets:
image: mwinteringham/restfulbookerplatform_assets:1.6.a1fd0e5
ports:
- "3003:3003"
restart: always
rbp-auth:
image: mwinteringham/restfulbookerplatform_auth:1.6.a1fd0e5
ports:
- "3004:3004"
restart: always
rbp-report:
image: mwinteringham/restfulbookerplatform_report:1.6.a1fd0e5
ports:
- "3005:3005"
restart: always
rbp-message:
image: mwinteringham/restfulbookerplatform_message:1.6.a1fd0e5
ports:
- "3006:3006"
restart: always
rbp-proxy:
image: mwinteringham/restfulbookerplatform_proxy:latest
ports:
- "80:80"
restart: always