Can I use CoreOS rkt
, or some related tool, to run my Docker-Compose project?
And / or is there some way to convert a Docker-Compose project to something similar, for CoreOS and rkt
?
My Docker-Compose project works fine on localhost and on the production servers. But I think I like CoreOS' and rkt's security model better — then I wouldn't have to run the containers with, in effect, root privileges, on my development machine (right?).
Here seems to be docs about how to run a single Docker container with rkt
: https://coreos.com/rkt/docs/latest/running-docker-images.html — but I want Docker-Compose like functionality, not just a single container.
(I currently use an Ubuntu based Linux distro.)