Reputation: 41
How to install librabbitmq-dev in alpine environment? I want to install rabbitmq,but install dependent first ,how to install librabbitmq-dev in alpine environment.Thank you.
Upvotes: 3
Views: 3950
Reputation: 71
You can install rabbitmq client with:
apk add rabbitmq-c-dev
Then if you need it in php, you can run:
pecl install amqp-1.10.0
You can set whatever version
Don't forget to enable the extension aswell
Upvotes: 7