This page provides overall tips for using of the OMS system, with the aim of reducing frustration and increasing productivity!
General
- Check out the Microservice overview page for the API of each microservice!
- Check out the Design page to get a general understanding of the system
Docker
Useful commands:
- `docker-compose up -d`
- Start the system in detached mode - no endless log in the terminal.
- `docker-compose down -v`
- (Gracefully) stop the system, `-v` specifies that the volumes (data) of the containers should be removed as well
- `docker ps -a`
- Show (`-a` for all) running containers
- `docker-compose logsĀ [container-name]`
- Show the logs of a specific container, leave empty for all logs
- `docker-compose run [container-name] bash`
- 'Enter' the container using bash.
...