github nicotsx/zerobyte v0.12.0

10 hours ago

⚠️ Breaking change

I have decided to rename the project to Zerobyte! As multiple users have noted, the previous name was too similar to the company Iron Mountain which provides cloud backup services. To avoid the confusion and a potential cease and desist later, it is now renamed!

Before updating to the latest version:

  1. Make sure ironmount container is stopped. docker compose down. Check with docker ps.
  2. Rename your /var/lib/ironmount folder (if it was named like this on your host): sudo mv /var/lib/ironmount /var/lib/zerobyte
  3. Edit your docker-compose.yml file
services:
  ironmount:
-   image: ghcr.io/nicotsx/ironmount:v0.11
+   image: ghcr.io/nicotsx/zerobyte:v0.12
-   container_name: ironmount
+   container_name: zerobyte
    restart: unless-stopped
    cap_add:
      - SYS_ADMIN
    ports:
      - "4096:4096"
    devices:
      - /dev/fuse:/dev/fuse
    volumes:
      - /etc/localtime:/etc/localtime:ro
-     - /var/lib/ironmount:/var/lib/ironmount
+     - /var/lib/zerobyte:/var/lib/zerobyte
  1. Start your container again: docker compose up -d

This release adds two more changes:

  • Make healthchecks less expensive by not creating a file on disk and by running every 30 minutes
  • Add support for sftp repositories

Don't miss a new zerobyte release

NewReleases is sending notifications on new releases.