I need to run a command passing the flag --privileged
to the underlying docker run
, is there a way to pass it using dokku run
?
Asked
Active
Viewed 96 times
0

user1519240
- 101
1 Answers
0
just found out, one should use https://dokku.com/docs/advanced-usage/docker-options/, for ie:
dokku docker-options:add myapp deploy,run "--privileged"
This will add the flag --privileged
when running deploy
and run

user1519240
- 101