mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
16 lines
259 B
YAML
16 lines
259 B
YAML
version: "3"
|
|
|
|
services:
|
|
db:
|
|
image: "mongo:5.0"
|
|
restart: unless-stopped
|
|
ports:
|
|
- "27017:27017"
|
|
volumes:
|
|
- "./d_data/db:/data/db"
|
|
api:
|
|
build: "."
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000:3000"
|
|
- "3001:3001" |