Mix Dokku with docker-compose containers #6989
-
|
Hey, I've been looking into running dokku, but while moving apps over I'd like to keep others in my existing docker-compose setup. I was reading through the docs, specifically the section about "Dokku/Docker Container Management Compatibility".
Do I read it correctly that starting from that version there's nothing wrong with mixing workloads from dokku and other tools (docker-compose) running on the machine as dokku will stricly only look at the "dokku" labeled resources and ignore the rest? If I'd want to then configure nginx to serve these non-dokku containers on a subdomain, how would I go about tweaking the nginx running on my machine to work for both dokku but also my non-dokku containers? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Ya that should be fine. If you want to configure nginx to serve these, you would need to write a custom nginx config and probably place it in |
Beta Was this translation helpful? Give feedback.
Ya that should be fine.
If you want to configure nginx to serve these, you would need to write a custom nginx config and probably place it in
/etc/nginx/sites-enabled. Nginx will load up both those and the custom ones used for Dokku apps automatically.