aboutsummaryrefslogtreecommitdiff
path: root/docker
AgeCommit message (Collapse)AuthorFilesLines
2021-04-18fix docker image releaseChris Lu1-1/+2
2021-04-08add DeleteUserPolicyKonstantin Lebedev1-1/+2
2021-03-29minio gateway s3 docker compose fileKonstantin Lebedev2-10/+54
2021-03-19s3: copy object to itselfChris Lu1-1/+1
fix https://github.com/chrislusf/seaweedfs/issues/1922
2021-03-12add mount memory profilingChris Lu2-1/+53
2021-03-12add 12 testsKonstantin Lebedev2-2/+2
https://github.com/chrislusf/seaweedfs/issues/1810
2021-03-10build static binary in docker imagesChris Lu2-2/+2
fix https://github.com/chrislusf/seaweedfs/issues/1856
2021-03-10Merge pull request #1872 from kmlebedev/grpc_authChris Lu4-5/+54
TLS allowed CommonNames
2021-03-10add commentsKonstantin Lebedev1-1/+5
2021-03-10allowed wildcard domainKonstantin Lebedev2-20/+17
2021-03-10comma-separated SSL certificate common namesKonstantin Lebedev1-4/+4
2021-03-09fix outdated cron job scriptsChris Lu1-2/+2
fix https://github.com/chrislusf/seaweedfs/issues/1881
2021-03-08TLS allowed commonNamesKonstantin Lebedev4-5/+53
2021-03-01add dependency for local dev clusterChris Lu1-0/+2
2021-02-282clusters adds tiering to s3Chris Lu2-0/+32
2021-02-28setup 2 clusters, with one as s3 destinationChris Lu1-1/+2
2021-02-19adjustChris Lu1-2/+2
2021-02-18Add build arg to choose dev or stable releaseRobin1-1/+3
2021-02-18ceph s3-tests include in the docker compose filesKonstantin Lebedev5-0/+257
https://github.com/chrislusf/seaweedfs/issues/1810
2021-02-13support customizable disk typeChris Lu1-3/+3
2021-02-10restart replication if RabbitMQ connection closedKonstantin Lebedev2-0/+0
https://github.com/google/go-cloud/issues/2958
2021-02-03increase to 3 volumes for local clusterChris Lu1-4/+26
2021-02-03relocating local docker compose filesChris Lu9-8/+8
2021-02-03RabbitMQ delay retry with Dead Letter ExchangeKonstantin Lebedev1-1/+3
https://github.com/chrislusf/seaweedfs/issues/1773 https://github.com/google/go-cloud/issues/2952
2021-01-31webdav: adds to docker fileChris Lu6-0/+26
2021-01-30filer: etcd store fix listingChris Lu2-0/+87
fix https://github.com/chrislusf/seaweedfs/issues/1767
2021-01-30test different volumeServerAcccssChris Lu1-5/+4
2021-01-28Merge pull request #1762 from kmlebedev/backupsinkChris Lu1-3/+2
replication to create time date directory
2021-01-28rename backup to local_incremental and use mtimeKonstantin Lebedev1-1/+1
2021-01-27adjust dev local docker compose yamlChris Lu1-2/+2
2021-01-27replication to create time date directoryKonstantin Lebedev1-3/+2
2021-01-27replication to todays date directoryKonstantin Lebedev2-2/+4
2021-01-26replication to local disk storageKonstantin Lebedev4-0/+89
2021-01-24makefile: add env for 2 clustersChris Lu2-0/+26
2021-01-22add local mount for testingChris Lu2-0/+50
2021-01-17docker-composeKonstantin Lebedev4-9/+93
- prometheus - nginx
2021-01-09adjustChris Lu1-1/+1
2021-01-01add mem_limit for mountChris Lu1-1/+2
2020-12-31dev cluster adds fuse mountChris Lu3-3/+13
2020-12-28Merge pull request #1713 from nivekuil/masterChris Lu3-0/+3
Add fuse to all dockerfiles
2020-12-28Add fuse to all dockerfilesnivekuil3-0/+3
2020-12-21k8s buildKonstantin Lebedev3-0/+80
2020-12-20Add fuse to docker imagenivekuil1-0/+1
2020-12-17fix Argument Name, and use the correct one.LazyDBA247-Anyvision2-4/+4
2020-12-15support build branches other than masterLazyDBA247-Anyvision2-0/+4
2020-12-04security master use access.uiKonstantin Lebedev1-4/+0
2020-11-11add local registry docker clusterChris Lu2-0/+98
2020-10-23add public url for volume serverChris Lu1-1/+1
2020-10-23make it easy with setting up multiple masters in a clcusterChris Lu1-3/+3
2020-10-21Allow custom command arguments to override default values in dockersuika1-5/+10
Depending on a setup, 1GB volume limit is not the preferable size. As weed can process multiple arguements and the later argument is the one to be used, it is relatively easy to override the arguments defined in the entrypoint. The arguments passed to the script will be shifted and appended at the end of the command. Since the first argument will fall into specific case, the argument can be predefined and the whole argument array shifted. Allowing to do "volume/server/master/etc $ARGS $@"