{"id":25556877,"url":"https://github.com/kevin-doolaeghe/omv_server","last_synced_at":"2026-01-26T21:12:35.608Z","repository":{"id":181214601,"uuid":"418251745","full_name":"kevin-doolaeghe/omv_server","owner":"kevin-doolaeghe","description":"Installation d'OpenMediaVault sur une carte Raspberry Pi","archived":false,"fork":false,"pushed_at":"2023-11-08T11:54:09.000Z","size":23,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-31T11:37:35.472Z","etag":null,"topics":["documentation","personnal-project"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kevin-doolaeghe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-10-17T20:46:20.000Z","updated_at":"2022-02-08T21:34:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"a053db07-1af0-4f78-8f03-e14b374cc89b","html_url":"https://github.com/kevin-doolaeghe/omv_server","commit_stats":null,"previous_names":["kevin-doolaeghe/omv_server"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kevin-doolaeghe/omv_server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevin-doolaeghe%2Fomv_server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevin-doolaeghe%2Fomv_server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevin-doolaeghe%2Fomv_server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevin-doolaeghe%2Fomv_server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kevin-doolaeghe","download_url":"https://codeload.github.com/kevin-doolaeghe/omv_server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevin-doolaeghe%2Fomv_server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28788294,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T21:02:48.137Z","status":"ssl_error","status_checked_at":"2026-01-26T21:01:13.039Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["documentation","personnal-project"],"created_at":"2025-02-20T14:56:07.994Z","updated_at":"2026-01-26T21:12:35.591Z","avatar_url":"https://github.com/kevin-doolaeghe.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# OpenMediaVault - The open network attached storage solution\n\n:triangular_flag_on_post: **OpenMediaVault** setup.\n\n## Author\n\n**Kevin Doolaeghe**\n\n## Setup\n\n1. Burn the *Raspberry Pi OS 64bit (Lite)* image using *Raspberry Pi OS Imager* software. \n\n:warning: The *Legacy* version must be installed because *Debian 12* isn't supported yet.\n\n2. Update and upgrade *Raspberry Pi OS* using the following commands :\n\n```\nsudo apt-get update\nsudo apt-get upgrade -y\nsudo reboot\n```\n\n3. Download installation script and install OMV :\n\n```\nwget -O - https://github.com/OpenMediaVault-Plugin-Developers/installScript/raw/master/install | sudo bash\n```\n\n4. Login to the web interface using default credentials :\n\n* Username : `admin`\n* Password : `openmediavault`\n\n## Application templates (`docker-compose`) for Portainer\n\n* Plex :\n```\n---\nversion: \"2.1\"\nservices:\n  plex:\n    image: lscr.io/linuxserver/plex\n    container_name: plex\n    network_mode: host\n    environment:\n      - PUID=998\n      - PGID=100\n      - VERSION=docker\n    volumes:\n      - /var/plex/config:/config\n      - /srv/dev-disk-by-uuid-1CCA-0E9F/Images:/images\n    restart: unless-stopped\n    privileged: true\n```\n\n* Heimdall :\n```\n---\nversion: \"2.1\"\nservices:\n  heimdall:\n    image: lscr.io/linuxserver/heimdall\n    container_name: heimdall\n    environment:\n      - PUID=998\n      - PGID=100\n      - TZ=Europe/Paris\n    volumes:\n      - /var/heimdall/config:/config\n    ports:\n      - 8888:80\n      - 8889:443\n    restart: unless-stopped\n    privileged: true\n```\n\n* Netdata :\n```\nversion: '3'\nservices:\n  netdata:\n    image: netdata/netdata\n    container_name: netdata\n    hostname: omv\n    ports:\n      - 19999:19999\n    restart: unless-stopped\n    cap_add:\n      - SYS_PTRACE\n    security_opt:\n      - apparmor:unconfined\n    volumes:\n      - netdataconfig:/etc/netdata\n      - netdatalib:/var/lib/netdata\n      - netdatacache:/var/cache/netdata\n      - /etc/passwd:/host/etc/passwd:ro\n      - /etc/group:/host/etc/group:ro\n      - /proc:/host/proc:ro\n      - /sys:/host/sys:ro\n      - /etc/os-release:/host/etc/os-release:ro\n    privileged: true\n\nvolumes:\n  netdataconfig:\n  netdatalib:\n  netdatacache:\n```\n\n* Guacamole :\n```\nversion: \"2\"\nservices:\n  guacamole:\n    image: oznu/guacamole:armhf\n    container_name: guacamole\n    volumes:\n      - postgres:/config\n    ports:\n      - 8080:8080\n    restart: unless-stopped\n    privileged: true\n\nvolumes:\n  postgres:\n    driver: local\n```\n\n* Jellyfin :\n```\n---\nversion: \"2.1\"\nservices:\n  jellyfin:\n    image: lscr.io/linuxserver/jellyfin\n    container_name: jellyfin\n    environment:\n      - PUID=998\n      - PGID=100\n      - TZ=Europe/Paris\n      - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional\n    volumes:\n      - /var/jellyfin/config:/config\n      - /var/jellyfin/images:/data/images\n      - /var/jellyfin/series:/data/series\n    ports:\n      - 8096:8096\n      - 8920:8920 #optional\n      - 7359:7359/udp #optional\n      - 1900:1900/udp #optional\n    restart: unless-stopped\n    privileged: true\n```\n\n## References\n\n* [Raspberry Pi 4 - OMV 6 Setup](https://wiki.omv-extras.org/doku.php?id=omv6:raspberry_pi_install)\n* [Github repository ⇢ OpenMediaVault](https://github.com/openmediavault/openmediavault)\n* [Github repository ⇢ OMV-Extras](https://github.com/OpenMediaVault-Plugin-Developers/packages)\n* [Github repository ⇢ OMV-Install-Script](https://github.com/OpenMediaVault-Plugin-Developers/installScript)\n* [OMV 6 Installation](https://forum.openmediavault.org/index.php?thread/39490-install-omv6-on-debian-11-bullseye/)\n* [Apache Guacamole (Remote access manager)](https://guacamole.apache.org/)\n* [Apache Guacamole installation process](https://www.wundertech.net/how-to-setup-apache-guacamole-on-a-raspberry-pi/)\n* [Pi-hole (Advertisement blocker)](https://www.it-connect.fr/pi-hole-un-bloqueur-de-pubs-pour-tout-votre-reseau/)\n* [Heimdall (Application dashboard)](https://hub.docker.com/r/linuxserver/heimdall)\n* [Dashy (Application dashboard)](https://dashy.to/)\n* [Plex (Media center)](https://hub.docker.com/r/linuxserver/plex)\n* [Jellyfin (Media center)](https://hub.docker.com/r/jellyfin/jellyfin)\n* [Portainer (Docker containers management)](https://www.portainer.io/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkevin-doolaeghe%2Fomv_server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkevin-doolaeghe%2Fomv_server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkevin-doolaeghe%2Fomv_server/lists"}