Files
workavia-drive/twake/docker-compose.onpremise.mongo.yml
T
Anton Shepilov 380f01222a 🐳 Deploy image to the internal docker registry
* Deploy the image to the internal docker registry
* Removed unnecessary stage in backend build
2023-04-05 15:55:29 +02:00

27 lines
543 B
YAML

version: "3.4"
services:
mongo:
container_name: mongo
image: mongo
volumes:
- ./docker-data/mongo:/data/db
node:
image: tdrive/tdrive-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