v0.15.0
Loading...
Searching...
No Matches
/home/lk58p/mofem_install/vanilla_dev_release/mofem-cephas/BuildDockerStack.sh
Go to the documentation of this file.
1#!/bin/bash
2
3mkdir -p empty
4
5export VERSION=0.15.0
6
7# Create environment
8docker build --progress=plain -t likask/mofem-spack-env -f Dockerfile-spack-env .
9docker tag likask/mofem-spack-env:latest likask/mofem-spack-env:$VERSION
10
11#Build core and users modules
12docker build --progress=plain -t likask/mofem-spack-mofem -f Dockerfile-spack-mofem .
13docker tag likask/mofem-spack-mofem:latest likask/mofem-spack-mofem:$VERSION
14
15#Jupyter
16docker build --progress=plain -t likask/mofem-spack-jupyter -f Dockerfile-spack-jupyter empty
17docker tag likask/mofem-spack-jupyter:latest likask/mofem-spack-jupyter:$VERSION
18
19# Hub
20docker build --progress=plain -t likask/mofem-spack-jupyterhub -f Dockerfile-spack-jupyterhub jupyter
21docker tag likask/mofem-spack-jupyterhub:latest likask/mofem-spack-jupyterhub:$VERSION
22
23# Labs indentation
24#docker build -t likask/mofem-spack-jupyterhub-labs-indentation:VERSION-new -f Dockerfile-spack-jupyterhub-labs-indentation .
25
26# Volume
27#docker build -t likask/mofem-spack-build -f Dockerfile-spack-volume empty
28#docker tag likask/mofem-spack-build:latest likask/mofem-spack-build:$VERSION
29
30
31