chore: update readme

This commit is contained in:
Nicolas Meienberger
2025-11-05 22:17:11 +01:00
parent 1e68339dd9
commit 8f1e24a034
2 changed files with 7 additions and 6 deletions

View File

@@ -42,11 +42,10 @@ In order to run Ironmount, you need to have Docker and Docker Compose installed
```yaml ```yaml
services: services:
ironmount: ironmount:
image: ghcr.io/nicotsx/ironmount:v0.3.0 image: ghcr.io/nicotsx/ironmount:v0.4.0
container_name: ironmount container_name: ironmount
restart: unless-stopped restart: unless-stopped
cap_add: privileged: true
- SYS_ADMIN
ports: ports:
- "4096:4096" - "4096:4096"
devices: devices:
@@ -54,7 +53,9 @@ services:
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
- /run/docker/plugins:/run/docker/plugins - /run/docker/plugins:/run/docker/plugins
- /var/lib/ironmount/volumes/:/var/lib/ironmount/volumes:rshared - /var/lib/ironmount/volumes/:/var/lib/ironmount/volumes:rslave
- /var/lib/repositories/:/var/lib/repositories
- /proc:/host/proc:ro
- ironmount_data:/data - ironmount_data:/data
volumes: volumes:

View File

@@ -1,5 +1,5 @@
export const OPERATION_TIMEOUT = 5000; export const OPERATION_TIMEOUT = 5000;
export const VOLUME_MOUNT_BASE = "/data/volumes"; export const VOLUME_MOUNT_BASE = "/var/lib/ironmount";
export const REPOSITORY_BASE = "/data/repositories"; export const REPOSITORY_BASE = "/var/lib/repositories";
export const DATABASE_URL = "/data/ironmount.db"; export const DATABASE_URL = "/data/ironmount.db";
export const RESTIC_PASS_FILE = "/data/secrets/restic.pass"; export const RESTIC_PASS_FILE = "/data/secrets/restic.pass";