-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker-compose up -d issue | OCI runtime create failed #520
Comments
Same issue here. |
I was able to "solve" this by downgrading the version of Flower to 0.9.5 flower:
- image: mher/flower
+ image: mher/flower:0.9.5 |
Ah, but it seems a better solution is to add the CELERY_BROKER_URL as an environment variable: deploy:
...
- command:
- - "--broker=amqp://guest@queue:5672//"
- # For the "Broker" tab to work in the flower UI, uncomment the following command argument,
- # and change the queue service's image as well
- # - "--broker_api=http://guest:guest@queue:15672/api//"
+ environment:
+ - CELERY_BROKER_URL=amqp://guest@queue:5672// |
@syrniellow - if this is an issue on Mac M model, there is a workaround I've mentioned in #707 |
Yep, I think the issue would be what @dudil mentioned. Have in mind that the latest version doesn't use Celery and Flower. But in any case, if you have similar issues, the can probably be handled with the same trick. 🤓 |
Assuming the original issue was solved, it will be automatically closed now. But feel free to add more comments or create new issues. |
Hi, I get the following issue in the last stage before starting the container (
<project-name>:flower-1
).Assuming the project name is "myapp"
The text was updated successfully, but these errors were encountered: