Skip to content

Commit 2349dc7

Browse files
Bot Updating Templated Files
1 parent 51da6b3 commit 2349dc7

File tree

3 files changed

+31
-37
lines changed

3 files changed

+31
-37
lines changed

.github/ISSUE_TEMPLATE/issue.bug.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ body:
5353
options:
5454
- x86-64
5555
- arm64
56-
- armhf
5756
validations:
5857
required: true
5958
- type: textarea

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The architectures supported by this image are:
5656
| :----: | :----: | ---- |
5757
| x86-64 || amd64-\<version tag\> |
5858
| arm64 || arm64v8-\<version tag\> |
59-
| armhf | | arm32v7-\<version tag\> |
59+
| armhf | | |
6060

6161
## Application Setup
6262

@@ -252,6 +252,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
252252

253253
## Versions
254254

255+
* **04.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)
255256
* **05.03.23:** - Rebase to Alpine 3.17.
256257
* **10.10.22:** - Rebasing to alpine 3.16, migrate to s6v3.
257258
* **23.01.21:** - Rebasing to alpine 3.13.

readme-vars.yml

Lines changed: 29 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -7,45 +7,39 @@ project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/ma
77
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a free, lightweight and easy-to-use home server for your comics and ebooks. Use it to access your files from anywhere, with a tablet, an e-reader, a phone or a computer."
88
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
99
project_blurb_optional_extras_enabled: false
10-
1110
# supported architectures
1211
available_architectures:
13-
- { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
14-
- { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
15-
- { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"}
16-
12+
- {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"}
13+
- {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"}
1714
# development version
1815
development_versions: false
19-
2016
# container parameters
2117
common_param_env_vars_enabled: true
2218
param_container_name: "{{ project_name }}"
2319
param_usage_include_net: false
2420
param_usage_include_env: true
2521
param_env_vars:
26-
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." }
27-
- { env_var: "MAXMEM", env_value: "", desc: "To set the maximum memory. ( ex: set '1024' for 1GB )" }
22+
- {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London."}
23+
- {env_var: "MAXMEM", env_value: "", desc: "To set the maximum memory. ( ex: set '1024' for 1GB )"}
2824
param_usage_include_vols: true
2925
param_volumes:
30-
- { vol_path: "/config", vol_host_path: "/path/to/data", desc: "Config files and database for ubooquity." }
31-
- { vol_path: "/books", vol_host_path: "/path/to/books", desc: "Location of books." }
32-
- { vol_path: "/comics", vol_host_path: "/path/to/comics", desc: "Location of comics." }
33-
- { vol_path: "/files", vol_host_path: "/path/to/raw/files", desc: "Location of raw files." }
26+
- {vol_path: "/config", vol_host_path: "/path/to/data", desc: "Config files and database for ubooquity."}
27+
- {vol_path: "/books", vol_host_path: "/path/to/books", desc: "Location of books."}
28+
- {vol_path: "/comics", vol_host_path: "/path/to/comics", desc: "Location of comics."}
29+
- {vol_path: "/files", vol_host_path: "/path/to/raw/files", desc: "Location of raw files."}
3430
param_usage_include_ports: true
3531
param_ports:
36-
- { external_port: "2202", internal_port: "2202", port_desc: "The library port." }
37-
- { external_port: "2203", internal_port: "2203", port_desc: "The admin port." }
32+
- {external_port: "2202", internal_port: "2202", port_desc: "The library port."}
33+
- {external_port: "2203", internal_port: "2203", port_desc: "The admin port."}
3834
param_device_map: false
3935
cap_add_param: false
40-
4136
# optional container parameters
4237
opt_param_usage_include_env: false
4338
opt_param_usage_include_vols: false
4439
opt_param_usage_include_ports: false
4540
opt_param_device_map: false
4641
opt_cap_add_param: false
4742
optional_block_1: false
48-
4943
# application setup block
5044
app_setup_block_enabled: true
5145
app_setup_block: |
@@ -65,24 +59,24 @@ app_setup_block: |
6559
You can explicitly set the amount of memory Ubooquity is allowed to use (be careful to set a value lower than the actual physical memory of your hardware). Value is a number of megabytes ( put just a number, without MB )
6660
6761
If no value is set it will default to 512MB.
68-
6962
# changelog
7063
changelogs:
71-
- { date: "05.03.23:", desc: "Rebase to Alpine 3.17." }
72-
- { date: "10.10.22:", desc: "Rebasing to alpine 3.16, migrate to s6v3." }
73-
- { date: "23.01.21:", desc: "Rebasing to alpine 3.13." }
74-
- { date: "01.06.20:", desc: "Rebasing to alpine 3.12." }
75-
- { date: "19.12.19:", desc: "Rebasing to alpine 3.11." }
76-
- { date: "28.06.19:", desc: "Rebasing to alpine 3.10." }
77-
- { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." }
78-
- { date: "22.02.19:", desc: "Rebasing to alpine 3.9." }
79-
- { date: "28.01.19:", desc: "Add pipeline logic and multi arch." }
80-
- { date: "15.10.18:", desc: "Upgrade to Ubooquity 2.1.2." }
81-
- { date: "23.08.18:", desc: "Rebase to alpine 3.8." }
82-
- { date: "09.12.17:", desc: "Rebase to alpine 3.7." }
83-
- { date: "07.10.17:", desc: "Upgrade to Ubooquity 2.1.1." }
84-
- { date: "16.07.17:", desc: "Upgrade to Ubooquity 2.1.0, see setting up application section for important info for existing v1.x users." }
85-
- { date: "26.05.17:", desc: "Rebase to alpine 3.6." }
86-
- { date: "08.04.17:", desc: "Switch to java from 3.5 repo, fixes login crashes." }
87-
- { date: "06.02.17:", desc: "Rebase to alpine 3.5." }
88-
- { date: "06.12.16:", desc: "Initial Release." }
64+
- {date: "04.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"}
65+
- {date: "05.03.23:", desc: "Rebase to Alpine 3.17."}
66+
- {date: "10.10.22:", desc: "Rebasing to alpine 3.16, migrate to s6v3."}
67+
- {date: "23.01.21:", desc: "Rebasing to alpine 3.13."}
68+
- {date: "01.06.20:", desc: "Rebasing to alpine 3.12."}
69+
- {date: "19.12.19:", desc: "Rebasing to alpine 3.11."}
70+
- {date: "28.06.19:", desc: "Rebasing to alpine 3.10."}
71+
- {date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag."}
72+
- {date: "22.02.19:", desc: "Rebasing to alpine 3.9."}
73+
- {date: "28.01.19:", desc: "Add pipeline logic and multi arch."}
74+
- {date: "15.10.18:", desc: "Upgrade to Ubooquity 2.1.2."}
75+
- {date: "23.08.18:", desc: "Rebase to alpine 3.8."}
76+
- {date: "09.12.17:", desc: "Rebase to alpine 3.7."}
77+
- {date: "07.10.17:", desc: "Upgrade to Ubooquity 2.1.1."}
78+
- {date: "16.07.17:", desc: "Upgrade to Ubooquity 2.1.0, see setting up application section for important info for existing v1.x users."}
79+
- {date: "26.05.17:", desc: "Rebase to alpine 3.6."}
80+
- {date: "08.04.17:", desc: "Switch to java from 3.5 repo, fixes login crashes."}
81+
- {date: "06.02.17:", desc: "Rebase to alpine 3.5."}
82+
- {date: "06.12.16:", desc: "Initial Release."}

0 commit comments

Comments
 (0)