Fix issue where container name issue

Fix issue where docker swarm names are incorrectly generated when project option is set.
This commit is contained in:
James Fielder 2017-10-09 11:03:39 +01:00 committed by GitHub
parent 017ee7bfc5
commit a160036ba2

View File

@ -49,7 +49,7 @@ cat << EOF > ${HOME_DIR}/projects/${SCRIPT_NAME}.sh
#!/usr/bin/env bash
set -e
CONTAINERS=\$(docker ps --format '{{.Names}}' | grep -E "^${PROJECT}_${CONTAINER}_[0-9]+")
CONTAINERS=\$(docker ps --format '{{.Names}}' | grep -E "^${PROJECT}_${CONTAINER}.[0-9]+")
for CONTAINER_NAME in \$CONTAINERS; do
docker exec ${DOCKERARGS} \${CONTAINER_NAME} ${TMP_COMMAND}
done
@ -213,4 +213,4 @@ if [ "$1" = "crond" ]; then
fi
echo "$@"
exec "$@"
exec "$@"