forked from FacsimiLab/facsimilab-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(docker): .profile --> .bash_aliases. removed /bin/conda causing i…
…nit error. installed main base into base env
- Loading branch information
1 parent
9596784
commit 07b1c00
Showing
6 changed files
with
65 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,30 @@ | ||
#!/bin/bash | ||
|
||
# Alias | ||
# Join Message | ||
server_name=$(cat ~/.server_name.txt ) | ||
|
||
echo -e "\e[1;31m$server_name\e[0m" | ||
|
||
# Set Windows Terminal Tab Name | ||
echo -ne "\033]0;$server_name\a" | ||
|
||
|
||
# Join paragraph | ||
|
||
echo """ | ||
Welcome to the Facsimilab suite of docker images. | ||
For more information, please visit github.com/pranavmishra90/facsimilab-platform | ||
Available python environments: | ||
""" | ||
|
||
|
||
micromamba env list | ||
|
||
|
||
echo """ | ||
---------------------------------------------------------------------------------- | ||
""" | ||
|
||
|
||
alias mamba='micromamba' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,30 @@ | ||
#!/bin/bash | ||
|
||
# >>> mamba initialize >>> | ||
# !! Contents within this block are managed by 'mamba init' !! | ||
export MAMBA_EXE='/usr/bin/micromamba'; | ||
export MAMBA_ROOT_PREFIX='/home/coder/micromamba'; | ||
__mamba_setup="$("$MAMBA_EXE" shell hook --shell bash --root-prefix "$MAMBA_ROOT_PREFIX" 2> /dev/null)" | ||
if [ $? -eq 0 ]; then | ||
eval "$__mamba_setup" | ||
else | ||
alias micromamba="$MAMBA_EXE" # Fallback on help from mamba activate | ||
fi | ||
unset __mamba_setup | ||
# <<< mamba initialize <<< | ||
|
||
|
||
# Alias | ||
# Join Message | ||
server_name=$(cat ~/.server_name.txt ) | ||
|
||
echo -e "\e[1;31m$server_name\e[0m" | ||
|
||
# Set Windows Terminal Tab Name | ||
echo -ne "\033]0;$server_name\a" | ||
|
||
|
||
# Join paragraph | ||
|
||
echo """ | ||
Welcome to the Facsimilab suite of docker images. | ||
For more information, please visit github.com/pranavmishra90/facsimilab-platform | ||
Available python environments: | ||
""" | ||
|
||
|
||
micromamba env list | ||
|
||
|
||
echo """ | ||
---------------------------------------------------------------------------------- | ||
""" | ||
|
||
|
||
alias mamba='micromamba' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters