Skip to content
Snippets Groups Projects
Select Git revision
  • 7bea56c640ca372a4dda892e1228c0eed9c1dbbd
  • master default protected
  • cvh
  • main
4 results

bashrc

Blame
  • bashrc 1.78 KiB
    # Copyright 2021 The TensorFlow Authors. All Rights Reserved.
    #
    # Licensed under the Apache License, Version 2.0 (the "License");
    # you may not use this file except in compliance with the License.
    # You may obtain a copy of the License at
    #
    #     http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    # ==============================================================================
    
    # Global setup for Python versions
    
    # Set up interactive stuff only if running interactively
    [ -z "$PS1" ] && return
    
    export PS1="\[\e[31m\]tf-docker\[\e[m\] \[\e[33m\]\w\[\e[m\] > "
    export TERM=xterm-256color
    alias grep="grep --color=auto"
    alias ls="ls --color=auto"
    
    echo -e "\e[1;31m"
    cat<<TF
     _____                        ______ _
    |_   _|                       |  ___| |
      | | ___ _ __  ___  ___  _ __| |_  | | _____      __
      | |/ _ \ '_ \/ __|/ _ \| '__|  _| | |/ _ \ \ /\ / /
      | |  __/ | | \__ \ (_) | |  | |   | | (_) \ V  V /
      \_/\___|_| |_|___/\___/|_|  \_|   |_|\___/ \_/\_/
    
    TF
    echo -e "\e[0;33m"
    
    if [[ "$EUID" -eq 0 ]]; then
      cat <<WARN
    WARNING: You are running this container as root, which can cause new files in
    mounted volumes to be created as the root user on your host machine.
    
    To avoid this, run the container by specifying your user's userid:
    
    $ docker run -u \$(id -u):\$(id -g) args...
    WARN
    else
      cat <<EXPL
    You are running this container as user with ID $(id -u) and group $(id -g),
    which should map to the ID and group for your user on the Docker host. Great!
    EXPL
    fi
    
    # Turn off colors
    echo -e "\e[m"