"Update docker compose files to expose service ports as per REQ0180"
This commit is contained in:
@@ -1,14 +1,23 @@
|
||||
#
|
||||
# REQ0180 service port schedule
|
||||
#
|
||||
services:
|
||||
frontend:
|
||||
command: 'sleep infinity'
|
||||
command: "sleep infinity"
|
||||
ports:
|
||||
- 8080:8080
|
||||
|
||||
mobile:
|
||||
command: 'sleep infinity'
|
||||
command: "sleep infinity"
|
||||
ports:
|
||||
- 3000:3000
|
||||
|
||||
cms_backend:
|
||||
command: 'sleep infinity'
|
||||
command: "sleep infinity"
|
||||
ports:
|
||||
- 7272:7272
|
||||
- 5555:5555
|
||||
|
||||
postgres:
|
||||
# container_name: postgres
|
||||
ports:
|
||||
- '5432:5432'
|
||||
- 5432:5432
|
||||
|
@@ -1,3 +1,6 @@
|
||||
#
|
||||
# REQ0180 service port schedule
|
||||
#
|
||||
volumes:
|
||||
db:
|
||||
driver: local
|
||||
|
Reference in New Issue
Block a user