Merge pull request #672 from SkynetLabs/ivo/config_accounts_branch

Configure accounts' branch from docker-compose.accounts.yml.
This commit is contained in:
Ivaylo Novakov 2021-04-14 13:39:14 +02:00 committed by GitHub
commit e35fa00b77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -24,6 +24,8 @@ services:
build: build:
context: ./docker/accounts context: ./docker/accounts
dockerfile: Dockerfile dockerfile: Dockerfile
args:
branch: ivo/limit_delete
container_name: accounts container_name: accounts
restart: unless-stopped restart: unless-stopped
logging: *default-logging logging: *default-logging

View File

@ -4,9 +4,11 @@ LABEL maintainer="NebulousLabs <devs@nebulous.tech>"
ENV GOOS linux ENV GOOS linux
ENV GOARCH amd64 ENV GOARCH amd64
ARG branch=main
WORKDIR /root WORKDIR /root
RUN git clone --single-branch --branch main https://github.com/NebulousLabs/skynet-accounts.git && \ RUN git clone --single-branch --branch ${branch} https://github.com/NebulousLabs/skynet-accounts.git && \
cd skynet-accounts && \ cd skynet-accounts && \
go mod download && \ go mod download && \
make release make release