mirror of
https://github.com/odoo/runbot.git
synced 2025-03-15 23:45:44 +07:00

The current runbot infrastructure has 100+ machine that will each build all docker images. This is unpractical for multiple reasons: - impotant load on all machine when the build could be done once - possible differences for the same image depending on the moment the base was pulled on the host. An extreme example was the version of python (3.11 or 3.12) when building the noble docker image before it was stabilized. - increase the chance to have a docker build failure in case of network problem. (random) A centralized registry will help with that, and allow future devlopment to generate more docker images. All docker images will be exactly the same, the pull time is faster than build time, only one build per docker image, ...
15 lines
247 B
Plaintext
15 lines
247 B
Plaintext
# dotfiles
|
|
.*
|
|
# compiled python files
|
|
*.py[co]
|
|
# emacs backup files
|
|
*~
|
|
# runbot work files
|
|
runbot/static/build
|
|
runbot/static/repo
|
|
runbot/static/sources
|
|
runbot/static/nginx
|
|
runbot/static/databases
|
|
runbot/static/docker
|
|
runbot/static/docker-registry
|