"Update docker compose files to expose service ports as per REQ0180"

This commit is contained in:
louiscklaw
2025-06-13 18:56:56 +08:00
parent 35b1cd1eba
commit 66b9bf5bdd
2 changed files with 17 additions and 5 deletions

View File

@@ -1,14 +1,23 @@
#
# REQ0180 service port schedule
#
services: services:
frontend: frontend:
command: 'sleep infinity' command: "sleep infinity"
ports:
- 8080:8080
mobile: mobile:
command: 'sleep infinity' command: "sleep infinity"
ports:
- 3000:3000
cms_backend: cms_backend:
command: 'sleep infinity' command: "sleep infinity"
ports:
- 7272:7272
- 5555:5555
postgres: postgres:
# container_name: postgres
ports: ports:
- '5432:5432' - 5432:5432

View File

@@ -1,3 +1,6 @@
#
# REQ0180 service port schedule
#
volumes: volumes:
db: db:
driver: local driver: local