2024-03-11 16:25:04 +00:00
|
|
|
---
|
|
|
|
version: "3"
|
|
|
|
|
|
|
|
services:
|
|
|
|
api:
|
2024-03-29 15:58:50 +00:00
|
|
|
image: git.autonomic.zone/autonomic-cooperative/justice-equity-technology:latest
|
|
|
|
build:
|
|
|
|
context: .
|
2024-03-11 16:25:04 +00:00
|
|
|
ports:
|
|
|
|
- 3001:3001
|
|
|
|
command: pnpm serve:api
|
|
|
|
env_file: .env
|
|
|
|
web:
|
2024-03-29 15:58:50 +00:00
|
|
|
image: git.autonomic.zone/autonomic-cooperative/justice-equity-technology:latest
|
2024-03-11 16:25:04 +00:00
|
|
|
ports:
|
|
|
|
- 3000:3000
|
|
|
|
command: pnpm serve:web
|
|
|
|
env_file: .env
|
|
|
|
db:
|
|
|
|
image: mongo:latest
|
|
|
|
ports:
|
|
|
|
- 27017:27017
|
|
|
|
volumes:
|
|
|
|
- mongo:/data
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
mongo:
|