From 8c9a60decf9cc72c464d5f7bc57b13e49bbf4c11 Mon Sep 17 00:00:00 2001 From: Pierre Tardy Date: Mon, 10 Oct 2016 11:03:04 +0200 Subject: [PATCH] use buildbot-master:master, and use env_file as a list env_file as a string will not work with hyper yet. --- simple/docker-compose.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/simple/docker-compose.yml b/simple/docker-compose.yml index c346392..3eb1bc1 100644 --- a/simple/docker-compose.yml +++ b/simple/docker-compose.yml @@ -1,8 +1,9 @@ version: '2' services: buildbot: - image: buildbot/buildbot-master:latest - env_file: db.env + 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 @@ -16,7 +17,8 @@ services: ports: - "8080:8080" db: - env_file: db.env + env_file: + - db.env image: "postgres:9.4" expose: - 5432