From 16f8c56315180ae7fadfc0e8ecec51d0a04a8a1c Mon Sep 17 00:00:00 2001 From: erangel1 Date: Thu, 30 Apr 2026 13:30:54 +0200 Subject: [PATCH] repo migration --- docker-compose.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..27514bb --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,30 @@ +services: + rustfs: + image: rustfs/rustfs:latest + container_name: rustfs + restart: unless-stopped + user: 1000:1000 + #ports: + # - "9000:9000" #this one is for the API + # - "9001:9001" #this one is for the console + networks: + - homelab + volumes: + - /mnt/rustfs/data:/data:rw + + environment: + RUSTFS_ACCESS_KEY: rustadm + RUSTFS_SECRET_KEY: QuietProfe55ion@! + RUSTFS_CONSOLE_ENABLE: "true" + RUSTFS_SERVER_DOMAINS: asgardlabs.net + + command: > + --address :9000 + --console-enable + --server-domains asgardlabs.net + --access-key rustadm + --secret-key QuietProfe55ion@! + /data +networks: + homelab: + external: true \ No newline at end of file