This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
psoserv_fuzziqer_docker/logs.sh
2021-01-17 15:36:33 -05:00

11 lines
229 B
Bash
Executable file

#!/bin/bash
container_name=psoserv_fuzziqer
if [ "$(docker inspect -f '{{.State.Running}}' ${container_name} 2>/dev/null)" != "true" ]; then
echo "${container_name} is not running!"
exit 1
fi
docker logs -f $container_name