feat: init

This commit is contained in:
montaghanmy
2023-03-23 11:03:16 +01:00
commit 10fe6f78d1
11518 changed files with 509786 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
version: "3.4"
services:
mongo:
container_name: mongo
image: mongo
volumes:
- ./docker-data/mongo:/data/db
node:
image: twaketech/twake-node:latest
ports:
- 3000:3000
- 8000:3000
environment:
- DEV=production
- SEARCH_DRIVER=mongodb
- DB_DRIVER=mongodb
- PUBSUB_TYPE=local
volumes:
- ./configuration/backend-node/production.json:/usr/src/app/config/production.json
- ./docker-data/documents/:/storage/
depends_on:
- mongo
links:
- mongo