10 lines
157 B
Bash
10 lines
157 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
SERVICE=${1:-all}
|
||
|
|
|
||
|
|
if [ "$SERVICE" = "all" ]; then
|
||
|
|
docker-compose logs -f --tail=100
|
||
|
|
else
|
||
|
|
docker-compose logs -f --tail=100 $SERVICE
|
||
|
|
fi
|