mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-16 17:05:32 +00:00
Added "./launcher logs" command.
This commit is contained in:
parent
6e84e376a6
commit
b09cc739b3
29
launcher
29
launcher
|
@ -185,28 +185,27 @@ start() {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
stop() {
|
ensure_container_running() {
|
||||||
set_existing_container
|
set_existing_container
|
||||||
if [[ $existing != "" ]]; then
|
if [[ $existing == "" ]]; then
|
||||||
(
|
|
||||||
set -x
|
|
||||||
docker stop -t 10 seafile
|
|
||||||
)
|
|
||||||
else
|
|
||||||
err_and_quit "seafile was not started !"
|
err_and_quit "seafile was not started !"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stop() {
|
||||||
|
ensure_container_running
|
||||||
|
(
|
||||||
|
set -x
|
||||||
|
docker stop -t 10 seafile
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
enter() {
|
enter() {
|
||||||
set_existing_container
|
ensure_container_running
|
||||||
if [[ $existing != "" ]]; then
|
|
||||||
(
|
(
|
||||||
set -x
|
set -x
|
||||||
docker exec -it seafile /bin/bash
|
docker exec -it seafile /bin/bash
|
||||||
)
|
)
|
||||||
else
|
|
||||||
err_and_quit "seafile was not started !"
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
restart() {
|
restart() {
|
||||||
|
@ -227,7 +226,11 @@ check_prereqs() {
|
||||||
}
|
}
|
||||||
|
|
||||||
logs() {
|
logs() {
|
||||||
err_and_quit "Not implemented yet"
|
ensure_container_running
|
||||||
|
(
|
||||||
|
set -x
|
||||||
|
docker logs --tail=20 -f seafile
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
destroy() {
|
destroy() {
|
||||||
|
|
Loading…
Reference in a new issue