|
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
output="$(DOMOVOY_HTTP_PORT=18080 docker compose config)"
|
|
|
|
if ! grep -q "published: \"18080\"" <<< "$output"; then
|
|
echo "Expected web service to publish DOMOVOY_HTTP_PORT=18080" >&2
|
|
exit 1
|
|
fi
|
|
|
|
echo "compose port config ok"
|