From 4ce4373eb02320a4dec4fe395f52f189fd6efaa7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ma=CC=88der?= Date: Wed, 30 Aug 2017 11:07:28 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20By=20default,=20build=20`latest`?= =?UTF-8?q?=20from=20the=20`master`=20branch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8a63ef8..d0cf439 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN apk add --no-cache \ WORKDIR /opt -ARG BRANCH=v2.0.7 +ARG BRANCH=master ARG URL=https://github.com/digitalocean/netbox/archive/$BRANCH.tar.gz RUN wget -q -O - "${URL}" | tar xz \ && mv netbox* netbox diff --git a/docker-compose.yml b/docker-compose.yml index df7859b..93edfbc 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,7 +5,7 @@ services: context: . args: - BRANCH=${BRANCH-master} - image: ninech/netbox:${BRANCH-master} + image: ninech/netbox:${BRANCH-latest} depends_on: - postgres env_file: netbox.env