Skip to content
Snippets Groups Projects
Select Git revision
  • 0375e856eccb7a418143fb55d7f5adc3087a04ba
  • main default protected
  • 1.6.11
  • 1.6.4
  • 1.6.3
  • 1.6.2
  • 1.6.1
  • 1.6.0
  • 1.5.14
  • 1.5.13
  • 1.5.12
  • 1.5.11
  • 1.5.10
  • 1.5.9
  • 1.5.8
15 results

Makefile

Blame
  • logs 263 B
    #!/bin/bash
    
    # Check if we are in the right place
    if [ ! -d ./services ]; then
        echo "You must run this command from the project's root folder."
        exit 1
    fi
    
    
    if [[ "x$1" != "x" ]] ; then
        docker-compose logs -f $1
    else
        docker-compose logs -f   
    fi