Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
114 changes: 114 additions & 0 deletions blueprints/seaweedfs/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
services:
master:
image: chrislusf/seaweedfs:latest
command: >
-v=0
master
-volumeSizeLimitMB=10240
-ip=master
-ip.bind=0.0.0.0
-port=9333
-mdir=/data/master
volumes:
- seaweedfs-master:/data/master
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://localhost:9333"]
interval: 30s
timeout: 10s
retries: 3
expose:
- 9333
deploy:
resources:
limits:
memory: 512M
reservations:
memory: 256M

volume:
image: chrislusf/seaweedfs:latest
command: >
-v=0
volume
-mserver="master:9333"
-port=8080
-dir=/data/volume
-max=100
volumes:
- seaweedfs-volume:/data/volume
depends_on:
master:
condition: service_healthy
restart: unless-stopped
expose:
- 8080
deploy:
resources:
limits:
memory: 1G
reservations:
memory: 512M

filer:
image: chrislusf/seaweedfs:latest
command: >
-v=0
filer
-defaultReplicaPlacement=000
-master="master:9333"
-ip=filer
-ip.bind=0.0.0.0
-port=8888
environment:
- WEED_MASTER=master:9333
volumes:
- seaweedfs-filer:/data
depends_on:
- master
- volume
restart: unless-stopped
# # Secure the GUI with username/password
# labels:
# # htpasswd -nb admin admin
# - "traefik.http.middlewares.basic-auth.basicauth.users=admin:$$apr1$$aLLYxhdC$$ZAW26eJfBRC8qWjCkcZns."
# - "traefik.http.routers.service-name.middlewares=basic-auth"
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://localhost:8888"]
interval: 30s
timeout: 10s
retries: 3
deploy:
resources:
limits:
memory: 1G
reservations:
memory: 512M
expose:
- 8888

s3:
image: chrislusf/seaweedfs:latest
command: >
-v=0
s3
-filer="filer:8888"
-ip.bind=0.0.0.0
-port=8333
environment:
- AWS_ACCESS_KEY_ID=${S3_ACCESS_KEY}
- AWS_SECRET_ACCESS_KEY=${S3_SECRET_KEY}
restart: unless-stopped
deploy:
resources:
limits:
memory: 512M
reservations:
memory: 256M
expose:
- 8333

volumes:
seaweedfs-master:
seaweedfs-volume:
seaweedfs-filer:
Loading