Code Monkey home page Code Monkey logo

Comments (5)

nkakouros avatar nkakouros commented on May 8, 2024 1

Maybe this helps?

https://stackoverflow.com/questions/33493456/docker-bash-prompt-does-not-display-color-output

from bash-oo-framework.

ukos-git avatar ukos-git commented on May 8, 2024

i do get colors using

$ python -c "print('\033[91mtest\033[0m')"
test

there is really no text underneath the overementioned message.

from bash-oo-framework.

ukos-git avatar ukos-git commented on May 8, 2024

actually, @tterranigma the post had some right ideas. I added the following:

USER igor
# activate color terminal
ENV TERM xterm-256color
RUN sed -i -e 's/^#force_color_prompt=[^\n]*/force_color_prompt=yes/' ~/.bashrc

sourceing ./basrc at run-time after editing is not enough for bash-oo-framework. setting TERM in run-time user environment is also not enough.

Has there been no requirement yet for non-colored terminals? I would have expected pure text-output if no color is activated.

from bash-oo-framework.

niieani avatar niieani commented on May 8, 2024

We do have color mode detection. No colors should be displayed when we detect a terminal without support for colors:

alias UI.Color.IsAvailable='[ $(tput colors 2>/dev/null || echo 0) -ge 16 ] && [ -t 1 ]'

Perhaps that line doesn't work under Docker. Happy to accept PRs that fix this!

Thanks for investigating. Related issue #19

from bash-oo-framework.

ukos-git avatar ukos-git commented on May 8, 2024

with ENV TERM xterm-256color

$ echo [ $(tput colors 2>/dev/null || echo 0) -ge 16 ]
[ 256 -ge 16 ]

without setting any ENV:

$ echo [ $(tput colors 2>/dev/null || echo 0) -ge 16 ]
[ 8 -ge 16 ]

I don't understand the second part but it resolves to true

$if test -t 1; then echo 1;fi
1

So it seems, standard docker containers get 8 colors. Is 16 colors really a minimum requirement here?

from bash-oo-framework.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.