Hi,
i wrote a Docker-compose file to spin up a rabbitmq
rabbitmq:
image: rabbitmq:3-management
container_name: rabbitmq
restart: always
command: bash -c "rabbitmq-plugins enable --offline rabbitmq_mqtt"
hostname: adfrabbit
ports:
- "8080:15672"
- "1883"
Problem here what i can see : It runs the command, restarts and runs the command again and again and again , a loop .
Somebody know how i can avoid this ?