Merge pull request #6 from perlun/patch-1

docker-compose.yml: Sanitize whitespace usage
This commit is contained in:
Pierre Tardy 2018-03-29 09:16:57 +02:00 committed by GitHub
commit 69fc1f3da7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,13 +3,13 @@ services:
buildbot: buildbot:
image: buildbot/buildbot-master:master image: buildbot/buildbot-master:master
env_file: env_file:
- db.env - db.env
environment: environment:
- BUILDBOT_CONFIG_DIR=config - BUILDBOT_CONFIG_DIR=config
- BUILDBOT_CONFIG_URL=https://github.com/buildbot/buildbot-docker-example-config/archive/master.tar.gz - BUILDBOT_CONFIG_URL=https://github.com/buildbot/buildbot-docker-example-config/archive/master.tar.gz
- BUILDBOT_WORKER_PORT=9989 - BUILDBOT_WORKER_PORT=9989
- BUILDBOT_WEB_URL=http://localhost:8010/ - BUILDBOT_WEB_URL=http://localhost:8010/
- BUILDBOT_WEB_PORT=8010 - BUILDBOT_WEB_PORT=8010
links: links:
- db - db
depends_on: depends_on:
@ -18,19 +18,19 @@ services:
- "8010:8010" - "8010:8010"
db: db:
env_file: env_file:
- db.env - db.env
image: "postgres:9.4" image: "postgres:9.4"
expose: expose:
- 5432 - 5432
worker: worker:
image: "buildbot/buildbot-worker:master" image: "buildbot/buildbot-worker:master"
environment: environment:
BUILDMASTER: buildbot BUILDMASTER: buildbot
BUILDMASTER_PORT: 9989 BUILDMASTER_PORT: 9989
WORKERNAME: example-worker WORKERNAME: example-worker
WORKERPASS: pass WORKERPASS: pass
WORKER_ENVIRONMENT_BLACKLIST: DOCKER_BUILDBOT* BUILDBOT_ENV_* BUILDBOT_1* WORKER_ENVIRONMENT_BLACKLIST WORKER_ENVIRONMENT_BLACKLIST: DOCKER_BUILDBOT* BUILDBOT_ENV_* BUILDBOT_1* WORKER_ENVIRONMENT_BLACKLIST
links: links:
- buildbot - buildbot