Skip to content

Commit

Permalink
Uncommented cluster nodes in docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvinmwinuka committed Jul 6, 2024
1 parent f01a079 commit eae0db3
Show file tree
Hide file tree
Showing 2 changed files with 224 additions and 220 deletions.
6 changes: 5 additions & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ RUN CGO_ENABLED=$CGO_ENABLED CC=$CC GOOS=$GOOS GOARCH=$GOARCH go build -o $DEST/

FROM --platform=linux/amd64 alpine:latest AS server

COPY --from=build /build/volumes/modules /opt/echovault/bin/modules
RUN mkdir -p /usr/echovault/bin/modules
RUN mkdir -p /etc/ssl/certs/echovault/server
RUN mkdir -p /etc/ssl/certs/echovault/client

COPY --from=build /build/volumes/modules /usr/echovault/bin/modules
COPY --from=build /build/bin/server /usr/echovault/bin
COPY ./openssl/server /etc/ssl/certs/echovault/server
COPY ./openssl/client /etc/ssl/certs/echovault/client
Expand Down
Loading

0 comments on commit eae0db3

Please sign in to comment.