32 lines
606 B
Bash
Executable File
32 lines
606 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "
|
|
Building base container
|
|
"
|
|
cd base
|
|
docker buildx build . -t git.janishutz.com/registry/dev-container-base
|
|
|
|
echo "
|
|
Building npm container
|
|
"
|
|
cd ../npm
|
|
docker buildx build . -t git.janishutz.com/registry/dev-container-npm
|
|
|
|
echo "
|
|
Building Vue container
|
|
"
|
|
cd ../vue
|
|
docker buildx build . -t git.janishutz.com/registry/dev-container-vue
|
|
#
|
|
# echo "
|
|
# Building Python container
|
|
# "
|
|
# cd ../python
|
|
# docker buildx build . -t git.janishutz.com/registry/dev-container-python
|
|
#
|
|
# echo "
|
|
# Building php container
|
|
# "
|
|
# cd ../php
|
|
# docker buildx build . -t git.janishutz.com/registry/dev-container-php
|