-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We _need_ docker logs #1611
Comments
We have it already for extensions
Em ter., 11 de abr. de 2023 às 14:40, João Antônio Cardoso <
***@***.***> escreveu:
… If not possible to have it in a file like service logs, we might have a
button using the commander to call docker logs
—
Reply to this email directly, view it on GitHub
<#1611>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAJIYCNE3JZA5AVVW4H42ELXAWJRVANCNFSM6AAAAAAW2SV46U>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
--
Patrick José Pereira
Electronics Engineer
|
an ad hoc hack to get it: export THISLOGPATH="/var/logs/blueos/services/bootstrap" ; \
export THISLOG="$THISLOGPATH/bootstrap-$(date +%Y%m%d-%H%M%S)" ; \
sudo mkdir -p $THISLOGPATH ; docker logs blueos-bootstrap | \
sudo tee $THISLOG.log |>/dev/null && \
sudo zip -m $THISLOG.zip $THISLOG.log ; \
unset THISLOG THISLOGPATH ; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If not possible to have it in a file like service logs, we might have a button using the commander to call
docker logs
The text was updated successfully, but these errors were encountered: