1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-18 01:10:34 +02:00
seaweedfs/docker
2022-09-01 14:47:45 -07:00
..
compose Add an End-to-End workflow for FUSE mount (#3562) 2022-08-31 09:27:53 -07:00
nginx
prometheus stats master_replica_placement_mismatch 2022-06-10 15:30:40 +05:00
Dockerfile.e2e Add an End-to-End workflow for FUSE mount (#3562) 2022-08-31 09:27:53 -07:00
Dockerfile.gccgo_build dockerfile fix directory 2022-09-01 09:43:41 -07:00
Dockerfile.go_build dockerfile fix directory 2022-09-01 09:43:41 -07:00
Dockerfile.local Add an End-to-End workflow for FUSE mount (#3562) 2022-08-31 09:27:53 -07:00
Dockerfile.rocksdb_dev_env build local rocksdb 2022-09-01 09:44:48 -07:00
Dockerfile.rocksdb_large dockerfile fix directory 2022-09-01 09:43:41 -07:00
Dockerfile.rocksdb_large_local add tmux for dev 2022-09-01 14:47:45 -07:00
Dockerfile.s3tests avoid Dockerfile Entrypoint: "file not found" (#3430) 2022-08-11 15:07:44 -07:00
entrypoint.sh feat: Send commands to weed shell from the docker image. 2022-06-01 15:47:10 -07:00
filer.toml
filer_rocksdb.toml add filer.toml for rocksdb to docker image for rocksdb 2022-02-09 00:12:53 -08:00
Makefile build local rocksdb 2022-09-01 09:44:48 -07:00
README.md site move 2022-07-29 15:47:14 -07:00
seaweedfs-compose.yml stats master_replica_placement_mismatch 2022-06-10 15:30:40 +05:00
seaweedfs-dev-compose.yml fix ip.bind cmd for docker compose 2022-06-15 16:49:53 +05:00
seaweedfs.sql docker compose file for nextcloud testing 2022-05-23 18:53:35 +05:00

Docker

Try it out


wget https://raw.githubusercontent.com/seaweedfs/seaweedfs/master/docker/seaweedfs-compose.yml

docker-compose -f seaweedfs-compose.yml -p seaweedfs up

Try latest tip


wget https://raw.githubusercontent.com/seaweedfs/seaweedfs/master/docker/seaweedfs-dev-compose.yml

docker-compose -f seaweedfs-dev-compose.yml -p seaweedfs up

Local Development

cd $GOPATH/src/github.com/seaweedfs/seaweedfs/docker
make

S3 cmd

list

s3cmd --no-ssl --host=127.0.0.1:8333 ls s3://

Build and push a multiarch build

Make sure that docker buildx is supported (might be an experimental docker feature)

BUILDER=$(docker buildx create --driver docker-container --use)
docker buildx build --pull --push --platform linux/386,linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6 . -t chrislusf/seaweedfs
docker buildx stop $BUILDER

Minio debuging

mc config host add local http://127.0.0.1:9000 some_access_key1 some_secret_key1
mc admin trace --all --verbose local