No description
Find a file
2025-10-15 22:16:48 +02:00
.github/workflows ci: create releases 2025-10-06 19:49:44 +02:00
apps feat: report an issue button 2025-10-15 22:16:48 +02:00
packages/schemas fix: form reset and default values 2025-09-28 18:14:48 +02:00
screenshots docs: update README 2025-10-04 14:50:39 +02:00
.dockerignore fix: build issues 2025-10-03 20:19:54 +02:00
.gitignore refactor: use rr actions/loader 2025-08-31 21:19:14 +02:00
biome.json refactor: use rr actions/loader 2025-08-31 21:19:14 +02:00
bun.lock chore: bump bun to 1.3.0 2025-10-15 22:16:40 +02:00
docker-compose.yml feat: update volume 2025-09-28 15:51:18 +02:00
Dockerfile chore: bump bun to 1.3.0 2025-10-15 22:16:40 +02:00
LICENSE Add LICENSE file 2025-09-27 11:23:47 +02:00
mutagen.yml feat(server): test mount endpoint 2025-09-02 22:52:44 +02:00
notes.md docs: update README 2025-10-01 21:36:45 +02:00
openapi-ts.config.ts fix: form reset and default values 2025-09-28 18:14:48 +02:00
package.json chore: bump bun to 1.3.0 2025-10-15 22:16:40 +02:00
README.md Revise warning message in README 2025-10-10 19:05:45 +02:00
turbo.json chore: production setup 2025-09-27 14:10:15 +02:00

Ironmount

Keep your volumes in check!
One interface to manage all your storage


Demo

Volume details view with usage statistics and health check status

Warning

Ironmount is still in version 0.x.x and is subject to major changes from version to version. I am developing the core features and collecting feedbacks. Expect bugs! Please open issues or feature requests

Intro

Ironmount is an easy to use web interface to manage your remote storage and mount them as local volumes on your server. Docker as a first class citizen, Ironmount allows you to easily mount your remote storage directly into your containers with few lines of code.

Features

  •   Support for multiple protocols: NFS, SMB, WebDAV, Directory
  • 📡  Mount your remote storage as local folders
  • 🐳  Docker integration: mount your remote storage directly into your containers via a docker volume syntax
  • 🔍  Keep an eye on your mounts with health checks and automatic remounting on error
  • 📊  Monitor your mounts usage with detailed statistics and graphs

Coming soon

  • Automated backups with encryption and retention policies
  • Integration with cloud storage providers (e.g. AWS S3, Google Drive, Dropbox)

Installation

In order to run Ironmount, you need to have Docker and Docker Compose installed on your server. Then, you can use the provided docker-compose.yml file to start the application.

services:
  ironmount:
    image: ghcr.io/nicotsx/ironmount:v0.2.0
    container_name: ironmount
    restart: unless-stopped
    cap_add:
      - SYS_ADMIN
    ports:
      - "4096:4096"
    devices:
      - /dev/fuse:/dev/fuse
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
      - /run/docker/plugins:/run/docker/plugins
      - /var/lib/docker/volumes/:/var/lib/docker/volumes:rshared
      - ironmount_data:/data

volumes:
  ironmount_data:
    driver: local

Then, run the following command to start Ironmount:

docker compose up -d

Once the container is running, you can access the web interface at http://<your-server-ip>:4096.

Docker volume usage

Preview