Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'build_files/buildbot-lts/docker/docker-compose.yml')
-rw-r--r--build_files/buildbot-lts/docker/docker-compose.yml36
1 files changed, 36 insertions, 0 deletions
diff --git a/build_files/buildbot-lts/docker/docker-compose.yml b/build_files/buildbot-lts/docker/docker-compose.yml
new file mode 100644
index 00000000000..cf0db3f16c4
--- /dev/null
+++ b/build_files/buildbot-lts/docker/docker-compose.yml
@@ -0,0 +1,36 @@
+version: '1'
+services:
+ buildbot:
+ image: buildbot/buildbot-master:master
+ env_file:
+ - db.env
+ environment:
+ - BUILDBOT_CONFIG_DIR=config
+ - BUILDBOT_CONFIG_URL=https://github.com/buildbot/buildbot-docker-example-config/archive/master.tar.gz
+ - BUILDBOT_WORKER_PORT=9989
+ - BUILDBOT_WEB_URL=http://localhost:8010/
+ - BUILDBOT_WEB_PORT=tcp:port=8010
+ links:
+ - db
+ depends_on:
+ - db
+ ports:
+ - "8010:8010"
+ db:
+ env_file:
+ - db.env
+ image: "postgres:9.4"
+ expose:
+ - 5432
+
+ worker:
+ image: "buildbot/buildbot-worker:master"
+ environment:
+ BUILDMASTER: buildbot
+ BUILDMASTER_PORT: 9989
+ WORKERNAME: lts-worker
+ WORKERPASS: pass
+ WORKER_ENVIRONMENT_BLACKLIST: DOCKER_BUILDBOT* BUILDBOT_ENV_* BUILDBOT_1* WORKER_ENVIRONMENT_BLACKLIST
+
+ links:
+ - buildbot \ No newline at end of file