Skip to content

Commit

Permalink
Update Backblaze template (#477)
Browse files Browse the repository at this point in the history
Co-authored-by: Nate Harris <[email protected]>
  • Loading branch information
smccloud and nwithan8 authored Feb 29, 2024
1 parent 71daebc commit 9e4e928
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions templates/backblaze.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,16 @@ This container needs additional installation steps after running the docker, whi
<Config Name="VNC" Target="5900" Default="5900" Mode="tcp" Description="Port used to access the application's GUI via the VNC protocol. Optional if no VNC client is used." Type="Port" Display="always" Required="false" Mask="false">5900</Config>
<Config Name="Encryption" Target="SECURE_CONNECTION" Default="0" Mode="" Description="When set to 1, an encrypted connection is used to access the application's GUI (either via a web browser or VNC client). See the Security section &#13;&#10; in the README for more details." Type="Variable" Display="always" Required="false" Mask="false">0</Config>
<Config Name="Timezone" Target="TZ" Default="Etc/UTC" Mode="" Description="Timezone of the container. Timezone can also be set by mapping /etc/localtime between the host and the container.&#9;" Type="Variable" Display="always" Required="false" Mask="false">Etc/UTC</Config>
<Config Name="Display Width" Target="DISPLAY_WIDTH" Default="657" Mode="" Description="Width (in pixels) of the virtual screen's window." Type="Variable" Display="always" Required="false" Mask="false">657</Config>
<Config Name="Display Height" Target="DISPLAY_HEIGHT" Default="473" Mode="" Description="Height (in pixels) of the virtual screen's window." Type="Variable" Display="always" Required="false" Mask="false">473</Config>
<Config Name="Display Width" Target="DISPLAY_WIDTH" Default="900" Mode="" Description="Width (in pixels) of the virtual screen's window." Type="Variable" Display="always" Required="false" Mask="false">900</Config>
<Config Name="Display Height" Target="DISPLAY_HEIGHT" Default="700" Mode="" Description="Height (in pixels) of the virtual screen's window." Type="Variable" Display="always" Required="false" Mask="false">700</Config>
<Config Name="VNC Password" Target="VNC_PASSWORD" Default="" Mode="" Description="Password needed to connect to the application's GUI. See the VNC Password section in the README for more details." Type="Variable" Display="always" Required="false" Mask="true"/>
<Config Name="X11VNC_EXTRA_OPTS" Target="X11VNC_EXTRA_OPTS" Default="" Mode="" Description="Extra options to pass to the x11vnc server running in the Docker container. WARNING: For advanced users. Do not use unless you know what you are doing." Type="Variable" Display="advanced" Required="false" Mask="false"/>
<Config Name="ENABLE_CJK_FONT" Target="ENABLE_CJK_FONT" Default="" Mode="" Description="When set to 1, open-source computer font WenQuanYi Zen Hei is installed. This font contains a large range of Chinese/Japanese/Korean characters.&#9;" Type="Variable" Display="advanced" Required="false" Mask="false"/>
<Config Name="Storage to back up" Target="/drive_d/" Default="/mnt/user/" Mode="rw" Description="This will be exposed to the Backblaze Client as drive D and therefore be backed up" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/</Config>
<Config Name="Config" Target="/config/" Default="/mnt/user/appdata/backblaze_personal_backup/" Mode="rw" Description="Container Path: /config/" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/backblaze_personal_backup/</Config>
<Config Name="ENABLE_CJK_FONT" Target="ENABLE_CJK_FONT" Default="" Mode="" Description="When set to 1, open-source computer font WenQuanYi Zen Hei is installed. This font contains a large range of Chinese/Japanese/Korean characters." Type="Variable" Display="advanced" Required="false" Mask="false"/>
<Config Name="Storage to back up" Target="/backup_volume/" Default="/mnt/user/" Mode="rw" Description="This will be exposed to the Backblaze Client as drive D and therefore be backed up" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/</Config>
<Config Name="Config" Target="/config/" Default="/mnt/cache/appdata/backblaze_personal_backup/" Mode="rw" Description="Container Path: /config/" Type="Path" Display="always" Required="true" Mask="false">/mnt/cache/appdata/backblaze_personal_backup/</Config>
<Config Name="Force Latest Update" Target="FORCE_LATEST_UPDATE" Default="false" Description="Forces the auto updater to download the newest version of the backblaze client from the backblaze servers instead of a known-good version from the Internet Archive." Type="Variable" Display="always" Required="true" Mask="false">true</Config>
<Config Name="User ID" Tareget="USER_ID" Default="99" Description="When mounting docker-volumes, permission issues can arise between the docker host and the container. You can pass the User_ID permissions to the container with this variable." Type="Variable" Display="always" Required="true" Mask="false">99</Config>
<Config Name="Group ID" Target="GROUP_ID" Default="100" Description="When mounting docker-volumes, permission issues can arise between the docker host and the container. You can pass the Group_ID permissions to the container with this variable." Type="Variable" Display="always" Required="true" Mask="false">100</Config>
<Config Name="Clean Temp Directory" Target="CLEAN_TMP_DIR" Default="1" Description="When set to 1, all files in the /tmp directory are deleted during the container startup." Type="Variable" Display="always" Required="true" Mask="false">1</Config>
<Config Name="Disable Autoupdate" Target="DISABLE_AUTOUPDATE" Default="false" Description="Disables the auto-update of the backblaze client to the latest known-good version at the time of the docker version release." Type="Variable" Display="always" Required="true" Mask="false">false</Config>
</Container>

0 comments on commit 9e4e928

Please sign in to comment.