
add Docker Compose configuration files for CMS, Doc, Ionic Mobile, API_TS, and PocketBase services, along with .env file for environment variables and related scripts ```
34 lines
529 B
YAML
34 lines
529 B
YAML
services:
|
|
cms:
|
|
environment:
|
|
- NODE_ENV=development
|
|
# command: "sleep infinity"
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: '1'
|
|
|
|
doc:
|
|
environment:
|
|
- NODE_ENV=development
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: '1'
|
|
|
|
ionic_mobile:
|
|
environment:
|
|
- NODE_ENV=development
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: '1'
|
|
|
|
api_ts:
|
|
environment:
|
|
- NODE_ENV=development
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: '1'
|