mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
update docker local dev env
This commit is contained in:
parent
892e726eb9
commit
ca4ca1ae6f
|
@ -1,15 +1,9 @@
|
||||||
FROM frolvlad/alpine-glibc as builder
|
|
||||||
RUN apk add git go g++
|
|
||||||
RUN mkdir -p /go/src/github.com/chrislusf/
|
|
||||||
RUN git clone https://github.com/chrislusf/seaweedfs /go/src/github.com/chrislusf/seaweedfs
|
|
||||||
RUN cd /go/src/github.com/chrislusf/seaweedfs/weed && go install
|
|
||||||
|
|
||||||
FROM alpine AS final
|
FROM alpine AS final
|
||||||
LABEL author="Chris Lu"
|
LABEL author="Chris Lu"
|
||||||
COPY --from=builder /root/go/bin/weed /usr/bin/
|
COPY ./weed /usr/bin/
|
||||||
RUN mkdir -p /etc/seaweedfs
|
RUN mkdir -p /etc/seaweedfs
|
||||||
COPY --from=builder /go/src/github.com/chrislusf/seaweedfs/docker/filer.toml /etc/seaweedfs/filer.toml
|
COPY ./filer.toml /etc/seaweedfs/filer.toml
|
||||||
COPY --from=builder /go/src/github.com/chrislusf/seaweedfs/docker/entrypoint.sh /entrypoint.sh
|
COPY ./entrypoint.sh /entrypoint.sh
|
||||||
|
|
||||||
# volume server gprc port
|
# volume server gprc port
|
||||||
EXPOSE 18080
|
EXPOSE 18080
|
||||||
|
|
8
docker/Makefile
Normal file
8
docker/Makefile
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
all: gen
|
||||||
|
|
||||||
|
.PHONY : gen
|
||||||
|
|
||||||
|
gen:
|
||||||
|
cd ../weed; GOOS=linux go build; mv weed ../docker/
|
||||||
|
docker-compose -f local-dev-compose.yml -p seaweedfs up
|
||||||
|
rm ./weed
|
|
@ -25,7 +25,5 @@ docker-compose -f seaweedfs-dev-compose.yml -p seaweedfs up
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cd $GOPATH/src/github.com/chrislusf/seaweedfs/docker
|
cd $GOPATH/src/github.com/chrislusf/seaweedfs/docker
|
||||||
|
make
|
||||||
docker-compose -f local-dev-compose.yml -p seaweedfs up
|
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue