28 lines
505 B
YAML
28 lines
505 B
YAML
---
|
|
version: "3"
|
|
|
|
services:
|
|
api:
|
|
image: git.autonomic.zone/autonomic-cooperative/justice-equity-technology:latest
|
|
build:
|
|
context: .
|
|
ports:
|
|
- 3001:3001
|
|
command: pnpm serve:api
|
|
env_file: .env
|
|
web:
|
|
image: git.autonomic.zone/autonomic-cooperative/justice-equity-technology:latest
|
|
ports:
|
|
- 3000:3000
|
|
command: pnpm serve:web
|
|
env_file: .env
|
|
db:
|
|
image: mongo:latest
|
|
ports:
|
|
- 27017:27017
|
|
volumes:
|
|
- mongo:/data
|
|
|
|
volumes:
|
|
mongo:
|