move docker-compose to root

This commit is contained in:
srgooglo 2022-10-01 04:57:36 +02:00
parent 9bbff9f59e
commit e8fcd28e89
2 changed files with 0 additions and 24 deletions

View File

@ -1,8 +0,0 @@
version: "3"
services:
app:
build: "."
restart: unless-stopped
ports:
- "9000:9000"

View File

@ -1,16 +0,0 @@
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"