diff --git a/simple/docker-compose.yml b/simple/docker-compose.yml index 910e8b5..695599c 100644 --- a/simple/docker-compose.yml +++ b/simple/docker-compose.yml @@ -3,13 +3,13 @@ services: buildbot: image: buildbot/buildbot-master:master env_file: - - db.env + - 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=8010 + - 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=8010 links: - db depends_on: @@ -18,19 +18,19 @@ services: - "8010:8010" db: env_file: - - db.env + - db.env image: "postgres:9.4" expose: - - 5432 + - 5432 worker: image: "buildbot/buildbot-worker:master" environment: - BUILDMASTER: buildbot - BUILDMASTER_PORT: 9989 - WORKERNAME: example-worker - WORKERPASS: pass - WORKER_ENVIRONMENT_BLACKLIST: DOCKER_BUILDBOT* BUILDBOT_ENV_* BUILDBOT_1* WORKER_ENVIRONMENT_BLACKLIST + BUILDMASTER: buildbot + BUILDMASTER_PORT: 9989 + WORKERNAME: example-worker + WORKERPASS: pass + WORKER_ENVIRONMENT_BLACKLIST: DOCKER_BUILDBOT* BUILDBOT_ENV_* BUILDBOT_1* WORKER_ENVIRONMENT_BLACKLIST links: - - buildbot + - buildbot