26 lines
397 B
YAML
26 lines
397 B
YAML
|
---
|
||
|
version: "3"
|
||
|
|
||
|
services:
|
||
|
api:
|
||
|
image: justice-equity-technology:3a0b940
|
||
|
ports:
|
||
|
- 3001:3001
|
||
|
command: pnpm serve:api
|
||
|
env_file: .env
|
||
|
web:
|
||
|
image: justice-equity-technology:3a0b940
|
||
|
ports:
|
||
|
- 3000:3000
|
||
|
command: pnpm serve:web
|
||
|
env_file: .env
|
||
|
db:
|
||
|
image: mongo:latest
|
||
|
ports:
|
||
|
- 27017:27017
|
||
|
volumes:
|
||
|
- mongo:/data
|
||
|
|
||
|
volumes:
|
||
|
mongo:
|