forked from TrueCloudLab/frostfs-node
[#7] Rebranding leftovers
- logo update - docker image build fixes - README and other texts updates Signed-off-by: Stanislav Bogatyrev <s.bogatyrev@yadro.com>
This commit is contained in:
parent
fdb0affc31
commit
cc71e6902a
20 changed files with 161 additions and 349 deletions
|
@ -5,15 +5,15 @@ ARG REPO=repository
|
|||
WORKDIR /src
|
||||
COPY . /src
|
||||
|
||||
RUN make bin/neofs-adm
|
||||
RUN make bin/frostfs-adm
|
||||
|
||||
# Executable image
|
||||
FROM alpine AS neofs-adm
|
||||
FROM alpine AS frostfs-adm
|
||||
RUN apk add --no-cache bash
|
||||
|
||||
WORKDIR /
|
||||
|
||||
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
||||
COPY --from=builder /src/bin/neofs-adm /bin/neofs-adm
|
||||
COPY --from=builder /src/bin/frostfs-adm /bin/frostfs-adm
|
||||
|
||||
CMD ["neofs-adm"]
|
||||
CMD ["frostfs-adm"]
|
||||
|
|
|
@ -5,15 +5,15 @@ ARG REPO=repository
|
|||
WORKDIR /src
|
||||
COPY . /src
|
||||
|
||||
RUN make bin/neofs-cli
|
||||
RUN make bin/frostfs-cli
|
||||
|
||||
# Executable image
|
||||
FROM alpine AS neofs-cli
|
||||
FROM alpine AS frostfs-cli
|
||||
RUN apk add --no-cache bash
|
||||
|
||||
WORKDIR /
|
||||
|
||||
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
||||
COPY --from=builder /src/bin/neofs-cli /bin/neofs-cli
|
||||
COPY --from=builder /src/bin/frostfs-cli /bin/frostfs-cli
|
||||
|
||||
CMD ["neofs-cli"]
|
||||
CMD ["frostfs-cli"]
|
||||
|
|
|
@ -3,6 +3,6 @@ RUN apk add --no-cache bash ca-certificates
|
|||
|
||||
WORKDIR /
|
||||
|
||||
COPY bin/neofs-adm /bin/neofs-adm
|
||||
COPY bin/frostfs-adm /bin/frostfs-adm
|
||||
|
||||
CMD ["neofs-adm"]
|
||||
CMD ["frostfs-adm"]
|
||||
|
|
|
@ -3,6 +3,6 @@ RUN apk add --no-cache bash ca-certificates
|
|||
|
||||
WORKDIR /
|
||||
|
||||
COPY bin/neofs-cli /bin/neofs-cli
|
||||
COPY bin/frostfs-cli /bin/frostfs-cli
|
||||
|
||||
CMD ["neofs-cli"]
|
||||
CMD ["frostfs-cli"]
|
||||
|
|
|
@ -3,6 +3,6 @@ RUN apk add --no-cache bash ca-certificates
|
|||
|
||||
WORKDIR /
|
||||
|
||||
COPY bin/neofs-ir /bin/neofs-ir
|
||||
COPY bin/frostfs-ir /bin/frostfs-ir
|
||||
|
||||
CMD ["neofs-ir"]
|
||||
CMD ["frostfs-ir"]
|
||||
|
|
|
@ -3,6 +3,6 @@ RUN apk add --no-cache bash ca-certificates
|
|||
|
||||
WORKDIR /
|
||||
|
||||
COPY bin/neofs-node /bin/neofs-node
|
||||
COPY bin/frostfs-node /bin/frostfs-node
|
||||
|
||||
CMD ["neofs-node"]
|
||||
CMD ["frostfs-node"]
|
||||
|
|
|
@ -5,14 +5,14 @@ ARG REPO=repository
|
|||
WORKDIR /src
|
||||
COPY . /src
|
||||
|
||||
RUN make bin/neofs-ir
|
||||
RUN make bin/frostfs-ir
|
||||
|
||||
# Executable image
|
||||
FROM alpine AS neofs-ir
|
||||
FROM alpine AS frostfs-ir
|
||||
RUN apk add --no-cache bash
|
||||
|
||||
WORKDIR /
|
||||
|
||||
COPY --from=builder /src/bin/neofs-ir /bin/neofs-ir
|
||||
COPY --from=builder /src/bin/frostfs-ir /bin/frostfs-ir
|
||||
|
||||
CMD ["neofs-ir"]
|
||||
CMD ["frostfs-ir"]
|
||||
|
|
|
@ -5,14 +5,14 @@ ARG REPO=repository
|
|||
WORKDIR /src
|
||||
COPY . /src
|
||||
|
||||
RUN make bin/neofs-node
|
||||
RUN make bin/frostfs-node
|
||||
|
||||
# Executable image
|
||||
FROM alpine AS neofs-node
|
||||
FROM alpine AS frostfs-node
|
||||
RUN apk add --no-cache bash
|
||||
|
||||
WORKDIR /
|
||||
|
||||
COPY --from=builder /src/bin/neofs-node /bin/neofs-node
|
||||
COPY --from=builder /src/bin/frostfs-node /bin/frostfs-node
|
||||
|
||||
CMD ["neofs-node"]
|
||||
CMD ["frostfs-node"]
|
||||
|
|
|
@ -5,15 +5,15 @@ ARG REPO=repository
|
|||
WORKDIR /src
|
||||
COPY . /src
|
||||
|
||||
RUN make bin/neofs-node
|
||||
RUN make bin/frostfs-node
|
||||
|
||||
# Executable image
|
||||
FROM alpine AS neofs-node
|
||||
FROM alpine AS frostfs-node
|
||||
RUN apk add --no-cache bash
|
||||
|
||||
WORKDIR /
|
||||
|
||||
COPY --from=builder /src/bin/neofs-node /bin/neofs-node
|
||||
COPY --from=builder /src/bin/frostfs-node /bin/frostfs-node
|
||||
COPY --from=builder /src/config/testnet/config.yml /config.yml
|
||||
|
||||
CMD ["neofs-node", "--config", "/config.yml"]
|
||||
CMD ["frostfs-node", "--config", "/config.yml"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue