Re: Package a virtualenv to deploy across multiple systems?

2016-09-22 Thread Vadym Serdiuk
=the idea is to make all apps independent of OS= Yeah! Docker do this. And any more... Docker can launch all parts of application in independent containers. And you can make independent scenarios and even load different libraries for different parts of application. And with docker-composer you can

Re: Package a virtualenv to deploy across multiple systems?

2016-09-22 Thread Ricardo Daniel Quiroga
create a docker image alternative? 2016-09-22 11:20 GMT-03:00 Saeon Tao : > i just been learning about openstack... which i think uses a lot of > docker... the idea is to make all apps independent of OS > > On Thursday, September 22, 2016 at 3:25:48 AM UTC+2, Abraham Varricatt

Re: Package a virtualenv to deploy across multiple systems?

2016-09-22 Thread Saeon Tao
i just been learning about openstack... which i think uses a lot of docker... the idea is to make all apps independent of OS On Thursday, September 22, 2016 at 3:25:48 AM UTC+2, Abraham Varricatt wrote: > > Hello, > > Do we have any standard/recommended way to distribute the python >

Re: Package a virtualenv to deploy across multiple systems?

2016-09-22 Thread Vadim Serdiuk
Hi. I suggest you to look at Docker. четверг, 22 сентября 2016 г., 4:25:48 UTC+3 пользователь Abraham Varricatt написал: > > Hello, > > Do we have any standard/recommended way to distribute the python > virtualenv used in a django application across multiple servers? > > I'm able to write a

Re: Package a virtualenv to deploy across multiple systems?

2016-09-22 Thread ludovic coues
As long as you use similar hardware and the same OS version everywhere, a zip should work. You might get some issue if each machine have a different version of some lib on which python have dependencies 2016-09-22 3:25 GMT+02:00 'Abraham Varricatt' via Django users

Package a virtualenv to deploy across multiple systems?

2016-09-21 Thread 'Abraham Varricatt' via Django users
Hello, Do we have any standard/recommended way to distribute the python virtualenv used in a django application across multiple servers? I'm able to write a provisioning script to do the following on a server, (for brevity, this is just a high-overview) * Clone the master branch of my django