Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 1.16 KB

File metadata and controls

47 lines (29 loc) · 1.16 KB

EngVision System

Run the System

We can easily run the whole with only a single command:

docker-compose up

The services can be run on the background with command:

docker-compose up -d --build

Stop the System

Stopping all the running containers is also simple with a single command:

docker-compose down

If you need to stop and remove all containers, networks, and all images used by any service in docker-compose.yml file, use the command:

docker-compose down --rmi all

If you want to remove everything that is not associated with a container (i.e. all images, volumes, networks, and containers that are not associated with a container), use the command:

docker system prune -a

Notes

Please refer to .env.sample files in each service folders to see what variables are needed.

Run the Frontend System

The frontend system is built with React.js. Refer to the README.md in the frontend folder for more details.

Run the Backend System

The backend system is built with Nest.js. Refer to the README.md in the backend folder for more details.