9 lines
339 B
Plaintext
Executable File
9 lines
339 B
Plaintext
Executable File
#/bin/bash
|
|
export REGISTRY="docker.triton2.fet.at"
|
|
|
|
# Build a development Image with Theia and all content
|
|
#docker build --no-cache -f Dockerfile.nginx -t $REGISTRY/dev_nginx:latest .
|
|
#docker push $REGISTRY/dev_nginx:latest
|
|
|
|
docker build --no-cache -f Dockerfile.theia -t $REGISTRY/dev_theia:latest .
|
|
docker push $REGISTRY/dev_theia:latest |