Skip to content

Commit 3957721

Browse files
committed
Use rabbitmq:latest Docker image because it does not set RABBITMQ_LOG
1 parent 7e37430 commit 3957721

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.ci/ubuntu/gha-setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ function start_rabbitmq
3737
{
3838
chmod 0777 "$GITHUB_WORKSPACE/.ci/ubuntu/log"
3939
docker rm --force "$rabbitmq_docker_name" 2>/dev/null || echo "[INFO] $rabbitmq_docker_name was not running"
40-
docker run --detach --name "$rabbitmq_docker_name" \
40+
docker run --pull always --detach --name "$rabbitmq_docker_name" \
4141
--publish 5671:5671 \
4242
--publish 5672:5672 \
4343
--publish 15672:15672 \
4444
--volume "$GITHUB_WORKSPACE/.ci/ubuntu/enabled_plugins:/etc/rabbitmq/enabled_plugins" \
4545
--volume "$GITHUB_WORKSPACE/.ci/ubuntu/rabbitmq.conf:/etc/rabbitmq/rabbitmq.conf:ro" \
4646
--volume "$GITHUB_WORKSPACE/.ci/certs:/etc/rabbitmq/certs:ro" \
4747
--volume "$GITHUB_WORKSPACE/.ci/ubuntu/log:/var/log/rabbitmq" \
48-
pivotalrabbitmq/rabbitmq:master-otp-max
48+
rabbitmq:latest
4949
}
5050

5151
function wait_rabbitmq

0 commit comments

Comments
 (0)