Merge pull request #672 from SkynetLabs/ivo/config_accounts_branch
Configure accounts' branch from docker-compose.accounts.yml.
This commit is contained in:
commit
e35fa00b77
|
@ -24,6 +24,8 @@ services:
|
|||
build:
|
||||
context: ./docker/accounts
|
||||
dockerfile: Dockerfile
|
||||
args:
|
||||
branch: ivo/limit_delete
|
||||
container_name: accounts
|
||||
restart: unless-stopped
|
||||
logging: *default-logging
|
||||
|
|
|
@ -4,9 +4,11 @@ LABEL maintainer="NebulousLabs <devs@nebulous.tech>"
|
|||
ENV GOOS linux
|
||||
ENV GOARCH amd64
|
||||
|
||||
ARG branch=main
|
||||
|
||||
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 && \
|
||||
go mod download && \
|
||||
make release
|
||||
|
|
Reference in New Issue