Back End Installation
Clone the following docker-compose file to a the directory on your web server/local develpment machine
version: '3.8'
services:
app:
image: techbootstrap/import-export:v1.1
# build: .
ports:
- "3000:3000"
depends_on:
- mongo
environment:
- db_url=mongodb://mongo:27017/techbootstrapimporter
networks:
- app-network
mongo:
image: mongo:6.0
ports:
- "27017:27017"
volumes:
- mongo-data:/data/db
networks:
- app-network
volumes:
mongo-data:
networks:
app-network:
Start the Backend application with docker-compose
docker-compose up
You can check for the latest Image from DockerHub before start building the Backend App https://hub.docker.com/repository/docker/techbootstrap/import-export/tags
you can scale up or down the number of containers required based on your load
Note: Upon successfuly startup the Backend application, Please get our advice on activating the product with full features
Back-end Installation