Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This page provides overall tips for using of the OMS system, with the aim of reducing frustration and increasing productivity!

General

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.

...