mirror of
https://github.com/altstackHQ/altstack-data.git
synced 2026-04-18 01:53:14 +02:00
53 lines
1.6 KiB
YAML
53 lines
1.6 KiB
YAML
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
# 🚀 BUILT & MAINTAINED BY THE ALTSTACK
|
|
# 🌍 https://thealtstack.com
|
|
# 💡 Open-source deployment templates for modern self-hosting.
|
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
|
|
# SeaweedFS: Fast distributed storage for blobs, objects, files, and data lake.
|
|
# S3-compatible API with master/volume/filer architecture.
|
|
|
|
services:
|
|
master:
|
|
image: chrislusf/seaweedfs
|
|
container_name: seaweedfs-master
|
|
restart: unless-stopped
|
|
ports:
|
|
- "9333:9333"
|
|
command: "master -ip=master"
|
|
|
|
volume:
|
|
image: chrislusf/seaweedfs
|
|
container_name: seaweedfs-volume
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8080:8080"
|
|
command: "volume -mserver=master:9333 -port=8080"
|
|
depends_on:
|
|
- master
|
|
volumes:
|
|
- seaweedfs_data:/data
|
|
|
|
filer:
|
|
image: chrislusf/seaweedfs
|
|
container_name: seaweedfs-filer
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8888:8888"
|
|
command: "filer -master=master:9333"
|
|
depends_on:
|
|
- master
|
|
|
|
s3:
|
|
image: chrislusf/seaweedfs
|
|
container_name: seaweedfs-s3
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8333:8333"
|
|
command: "s3 -filer=filer:8888"
|
|
depends_on:
|
|
- filer
|
|
|
|
volumes:
|
|
seaweedfs_data:
|