Contributors mailing list archives
contributors@odoo-community.org
Browse archives
Re: Docker :: Distributed Deployment Wheelhouse
by@ Levent: Thanks! I'll watch out for that hint as we go down the line.
@ Moisés: I'll see what I can do. Of course this would be perfect. For now, I'll share the ideas behind.
I got another useful patten, which is what I tried to achieve by a coordinated OCA community open design process about docker, which sadly until now did not get accepted. I'll share it here:
When we prepare the Zip artifacts of the Odoo source code we invalidate the cache very individually with a docker build --no-cache or its compose equivalent. This pattern needs to split every zip-factory in a separate dockerfile and inherit the volumes from the former. Like this we are able to very flexibly construct the artefacts and expose them via the mentioned uhttpd at the end of the factory chain uhttpd simply picks up the "volumes from" the last image. If an intermediate image has been rebuild at *buildtime* those changes are correctly passed to the file server at runtime.
Best, DavidMoises Lopez <moylop260@vauxoo.com> schrieb am Mi., 11. Nov. 2015 um 10:08:David,Maybe you can share a Dockerfile versioned...2015-11-11 2:53 GMT-05:00 Levent Karakas <levent@mektup.at>:shouldn't it be libxslt1-dev ?2015-11-11 6:23 GMT+02:00 David Arnold <dar@devco.co>:sorry, I missed those two beforehand:libsasl2-dev \libssl-dev \El mar., 10 nov. 2015 a las 18:41, David Arnold (<dar@devco.co>) escribió:It's not nice to share headache without remedy, so on ubunty:trusty, those where the deps to build all current standard pip requirements.txt of the offical odoor repo properly:# Additional dependencies for wheelfactory (placed here for caching reasons)RUN apt-get update && apt-get install -ypython-pip \libldap2-dev \libxml2-dev \libxslt-dev \libpq-dev \libjpeg-dev \python-renderpmThe last one I'm not 100% sure. Just put it there, as it doesn't really matter and sounds so similar to a pip req.BestEl mar., 10 nov. 2015 a las 16:28, David Arnold (<dar@devco.co>) escribió:HiI wanted to share with you a pattern for rather easily achieving a distributed deployment wheelhouse on your distributed CI runners on your docker infrastructure with the purpose of saving bandwidth and pushing speed.Step 1: Make a pre-build Dockerfile which prepares wheels and other stuff such as odoo.zips and webserver binaries.Step 2: on docker run copy those to a bindmounted shared volumeStep 3: run a uhttp (ej. fnichol/uhttpd) with volumes_fromStep 4: access your ephemeral, but cached (by docker build stack), webserver from your other dockers via the host gateway and the exposed port [ej. $(ip route get 8.8.8.8 | grep -Eo 'via \S+' | awk '{print $2}')]Enjoy the speed up, even more so on slow network connection (or just save on your bandwith)Best David_______________________________________________
Mailing-List: http://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: http://odoo-community.org/groups?unsubscribe_______________________________________________
Mailing-List: http://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: http://odoo-community.org/groups?unsubscribe--Moisés López Calderón
Vauxoo - OpenERP's Gold Partner
Mobile: (+521) 477-752-22-30
Office: (+52) 477-773-33-46
web: http://www.vauxoo.comtwitter: @vauxoo@moylop260hangout: moylop260@vauxoo.com_______________________________________________
Mailing-List: http://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: http://odoo-community.org/groups?unsubscribe
Reference
-
Docker :: Distributed Deployment Wheelhouse
bydar@devco.co-
Re: Docker :: Distributed Deployment Wheelhouse
byVauxoo, Moisés López Calderón -
Re: Docker :: Distributed Deployment Wheelhouse
byEska Yazilim, Levent Karakaş