-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Docker Compose for S3
Chris Lu edited this page Oct 2, 2024
·
1 revision
To use SeaweedFS S3 API, here is the simplest form:
version: '3.8'
services:
seaweedfs-s3:
image: chrislusf/seaweedfs
container_name: seaweedfs-s3
ports:
- "8333:8333"
entrypoint: /bin/sh -c
command: |
"echo '{
\"identities\": [
{
\"name\": \"anonymous\",
\"actions\": [
\"Read\"
]
},
{
\"name\": \"some_admin_user\",
\"credentials\": [
{
\"accessKey\": \"some_access_key1\",
\"secretKey\": \"some_secret_key1\"
}
],
\"actions\": [
\"Admin\",
\"Read\",
\"List\",
\"Tagging\",
\"Write\"
]
}
]
}' > /etc/seaweedfs/config.json && \
weed server -s3 -s3.config /etc/seaweedfs/config.json"
restart: unless-stopped
- Replication
- Store file with a Time To Live
- Failover Master Server
- Erasure coding for warm storage
- Server Startup Setup
- Environment Variables
- Filer Setup
- Directories and Files
- Data Structure for Large Files
- Filer Data Encryption
- Filer Commands and Operations
- Filer JWT Use
- Filer Cassandra Setup
- Filer Redis Setup
- Super Large Directories
- Path-Specific Filer Store
- Choosing a Filer Store
- Customize Filer Store
- Migrate to Filer Store
- Add New Filer Store
- Filer Store Replication
- Filer Active Active cross cluster continuous synchronization
- Filer as a Key-Large-Value Store
- Path Specific Configuration
- Filer Change Data Capture
- Cloud Drive Benefits
- Cloud Drive Architecture
- Configure Remote Storage
- Mount Remote Storage
- Cache Remote Storage
- Cloud Drive Quick Setup
- Gateway to Remote Object Storage
- Amazon S3 API
- AWS CLI with SeaweedFS
- s3cmd with SeaweedFS
- rclone with SeaweedFS
- restic with SeaweedFS
- nodejs with Seaweed S3
- S3 API Benchmark
- S3 API FAQ
- S3 Bucket Quota
- S3 API Audit log
- S3 Nginx Proxy
- Docker Compose for S3
- Hadoop Compatible File System
- run Spark on SeaweedFS
- run HBase on SeaweedFS
- run Presto on SeaweedFS
- Hadoop Benchmark
- HDFS via S3 connector
- Async Replication to another Filer [Deprecated]
- Async Backup
- Async Filer Metadata Backup
- Async Replication to Cloud [Deprecated]
- Kubernetes Backups and Recovery with K8up