13 lines
372 B
Bash
Executable File
13 lines
372 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
DOCKER_IMAGES="tactical tactical-frontend tactical-nginx tactical-meshcentral tactical-salt tactical-nats"
|
|
|
|
cd ..
|
|
|
|
for DOCKER_IMAGE in ${DOCKER_IMAGES}; do
|
|
echo "Building Tactical Image: ${DOCKER_IMAGE}..."
|
|
docker build --pull --no-cache -t "${DOCKER_IMAGE}" -f "docker/containers/${DOCKER_IMAGE}/dockerfile" .
|
|
done |