-
no-one started following iDrive Template & Appdata Backup
-
iDrive Template & Appdata Backup
For those of you looking, I finally got an idrive template working! The only problem is the appdata backup plugin says: "[⚠️][iDrive] iDrive does not have any volume to back up! Skipping. Please consider ignoring this container." I'm a bit of a newb, only a couple weeks fresh to all of this... using ChatGPT for most of it. Any idea how to fix this? When I try mapping the host to "/mnt/user/appdata/idrive" it breaks. Not sure what else to try. <?xml version="1.0"?> <Container version="2"> <Name>iDrive</Name> <Repository>snorre0815/idrive-docker:latest</Repository> <Registry>https://hub.docker.com/r/snorre0815/idrive-docker</Registry> <Network>bridge</Network> <Shell>bash</Shell> <Privileged>false</Privileged> <Support>https://github.com/snorre-k/idrive-docker</Support> <Project>https://hub.docker.com/r/snorre0815/idrive-docker</Project> <Overview> This container runs iDrive backup for Unraid. It uses a persistent volume to store the configuration and maps an external backup pool (read-only) into the container. </Overview> <Template> <!-- Environment Variables --> <Environment> <Variable> <Name>TZ</Name> <Description>Time Zone</Description> <Default>America/New_York</Default> </Variable> </Environment> <!-- Volume Mappings --> <Volume> <!-- Persistent volume for iDrive configuration --> <Mapping> <Host>idrive</Host> <Container>/opt/IDriveForLinux/idriveIt</Container> <Mode>rw</Mode> </Mapping> <!-- Local time mapping --> <Mapping> <Host>/etc/localtime</Host> <Container>/etc/localtime</Container> <Mode>ro</Mode> </Mapping> </Volume> <!-- Custom Docker Labels (for Unraid) --> <Label> <Variable> <Name>org.unraid.icon</Name> <Description>Container Icon</Description> <Default>https://static.idriveonlinebackup.com/source/images/favicon.ico</Default> </Variable> </Label> <!-- Extra Arguments --> <ExtraArgs>--restart=always</ExtraArgs> </Template> </Container>
-
Anyone got Idrive working on Unraid ?
For whatever reason, I couldn't get any one method to work, but between a few of these posts, some trial and error, and a lot of chatgpt, here's what worked for me: Step 1: Remove Any Existing iDrive Container & Start Fresh (warning, this will remove previous settings) docker stop idrive docker rm idrive docker volume rm idrive Step 2: Create a Persistent Docker Volume docker volume create idrive Step 3: Run the iDrive Container with Correct Mappings and a Custom Icon docker run -d --name idrive \ --restart=always \ --label "org.unraid.icon=https://static.idriveonlinebackup.com/source/images/favicon.ico" \ -v idrive:/opt/IDriveForLinux/idriveIt \ -v /mnt/user:/data:ro \ -v /etc/localtime:/etc/localtime:ro \ -e TZ="America/New_York" \ snorre0815/idrive-docker:latest Step 4: Configure Your iDrive Account docker exec -it idrive /bin/bash Launch the Interactive Account Setup Menu: Depending on your image version, run one of these commands: ./idrive --account-setting or ./account_setting.pl Reconfigure Your Account: Choose to reconfigure your account. Log in using your iDrive credentials and complete any two-factor authentication. Confirm the backup location. ...I'm a newb, so be warned...Not sure I understand it all...frankly, I have no idea why it works, so no guarantees you won't have problems. I know the appdata backup plugin doesn't like it. But hey, it worked for me.
no-one
Members
-
Joined
-
Last visited