Skip to content

Dev #63

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Dev #63

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ tar -xvf cellorganizer-binaries.tgz && \
rm cellorganizer-binaries.tgz

#docker build --no-cache -t icaoberg/cellorganizer-jupyter:latest .
docker build -t murphylab/cellorganizer-jupyter:latest .
docker tag murphylab/cellorganizer-jupyter:latest murphylab/cellorganizer-jupyter:mmbios2021
docker build -t murphylab/cellorganizer-jupyter:dev .
docker tag murphylab/cellorganizer-jupyter:dev murphylab/cellorganizer-jupyter:dev
2 changes: 1 addition & 1 deletion cellorganizer-python
4 changes: 2 additions & 2 deletions push.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

docker push murphylab/cellorganizer-jupyter:latest
docker push murphylab/cellorganizer-jupyter:v2.9.1
docker push murphylab/cellorganizer-jupyter:mmbios2021
docker push murphylab/cellorganizer-jupyter:v2.9.3
docker push murphylab/cellorganizer-jupyter:mmbios2022
14 changes: 7 additions & 7 deletions run.sh
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
#!/bin/bash

if [ ! -d ~/Desktop/mmbios2021 ]; then
if [ ! -d ~/Desktop/mmbios2022 ]; then
DIRECTORY=$(pwd)
####################################################################################################
# icaoberg - this creates temporary folder on Desktop
mkdir -p ~/Desktop/mmbios2021
chmod a+rwx -R ~/Desktop/mmbios2021
cd ~/Desktop/mmbios2021
mkdir -p ~/Desktop/mmbios2022
chmod a+rwx -R ~/Desktop/mmbios2022
cd ~/Desktop/mmbios2022
####################################################################################################
cd $DIRECTORY
fi

############################################################################################################
docker run --rm -p 8888:8888 \
-v ~/Desktop/mmbios2021:/home/murphylab/cellorganizer/local \
--memory="4g" \
--cpus=2 \
-v ~/Desktop/mmbios2022:/home/murphylab/cellorganizer/local \
--memory="12g" \
--cpus=6 \
-e JUPYTER_LAB_ENABLE=yes \
murphylab/cellorganizer-jupyter
############################################################################################################